IDocService.cs 184 B

123456789
  1. using System.Threading.Tasks;
  2. namespace GxPress.Service.Interface.Doc
  3. {
  4. public interface IDocService:IService
  5. {
  6. Task<string> MakeDoc(int flowId, int userId);
  7. }
  8. }