using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Entity.WorkFlow; using Datory; namespace GxPress.Repository.Interface.WorkFlow { public interface IFlowApproverCheckRepository : IRepository { Task InsertAsync(FlowApproverCheck item); Task> GetListAsync(int flowId); Task DeleteAllAsync(int flowId); } }