using System.Threading.Tasks; namespace GxPress.Service.Interface.Doc { public interface IDocService:IService { Task<string> MakeDoc(int flowId, int userId); } }