using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Entity.WorkProcess; using Datory; namespace GxPress.Repository.Interface.WorkProcess { public interface IProcessRequestLimitRepository : IRepository { Task InsertAsync(ProcessRequestLimit limit); Task DeleteByProcessIdAsync(int processId); Task> GetListAsync(int processId); Task> GetProcessIdListByDepartmentIdAsync(int departmentId); Task> GetProcessIdListByDepartmentIdAsync(List departmentIds); } }