using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Entity.WorkProcess; using GxPress.Entity.WorkProcessDto; namespace GxPress.Service.Interface { public interface IProcessService : IService { Task AddAsync(ProcessDto request); Task EditAsync(ProcessDto request); Task GetAsync(int processId); Task> GetNodesAsync(int processId, int parentId); Task> GetAllAsync(int processId); } }