123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Datory;
- using GxPress.Common.Page;
- using GxPress.Request.SpecialLabel;
- namespace GxPress.Repository.Interface.SpecialLabel
- {
- public interface ISpecialLabelRepository : IRepository
- {
-
-
-
-
-
- Task<int> InsertAsync(Entity.SystemLabel.SpecialLabel model);
-
-
-
-
-
- Task<bool> UpdateAsync(Entity.SystemLabel.SpecialLabel model);
-
-
-
-
-
- Task<Entity.SystemLabel.SpecialLabel> GetAsync(int id);
-
-
-
-
-
- Task<bool> DeleteAsync(int id);
-
-
-
-
-
- Task<IEnumerable<Entity.SystemLabel.SpecialLabel>> GetAllAsync(int typeValue,int pageSize=10);
-
-
-
-
-
- Task<PagedList<Entity.SystemLabel.SpecialLabel>> GetAllAsync(SpecialLabelSearchRequest request);
- }
- }
|