using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Entity.WorkProcess; using Datory; namespace GxPress.Repository.Interface.WorkProcess { public interface IProcessNodeRepository : IRepository { Task> GetListAsync(int processId, int parentId); Task InsertAsync(ProcessNode processNode); Task DeleteByProcessIdAsync(int processId); Task> GetAllAsync(int processId); } }