123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using GxPress.Entity.WorkProcess;
- using GxPress.Request.ProcessGroup;
- using Datory;
- namespace GxPress.Repository.Interface.WorkProcess
- {
- public interface IProcessGroupRepository : IRepository
- {
- Task<bool> ExistsAsync(int id);
- Task<bool> IsNameExistsAsync(string name);
- Task<int> InsertAsync(ProcessGroup processGroup);
- Task<ProcessGroup> GetAsync(int id);
- Task<bool> UpdateAsync(ProcessGroup processGroup);
- Task<IEnumerable<ProcessGroup>> GetListAsync();
-
-
-
-
-
- Task<ProcessGroup> AddAsync(ArticleGroupAddRequest request);
-
-
-
-
-
-
- Task<bool> UpdateAsync(int id, ArticleGroupAddRequest request);
-
-
-
-
-
- Task<bool> DeleteAsync(int id);
- }
- }
|