ISystemLabelRepository.cs 710 B

1234567891011121314151617181920212223
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Datory;
  4. using GxPress.Common.Page;
  5. using GxPress.Request.SystemLabel;
  6. using GxPress.Result.SystemLabel;
  7. namespace GxPress.Repository.Interface.SystemLabel
  8. {
  9. public interface ISystemLabelRepository : IRepository
  10. {
  11. Task<Entity.SystemLabel.SystemLabel> GetAsync(int id);
  12. Task<bool> DeleteAsync(int id);
  13. Task<int> InsertAsync(Entity.SystemLabel.SystemLabel note);
  14. Task<bool> UpdateAsync(SystemLabelUpRequest note);
  15. Task<PagedList<SystemLabelResult>> GetAllAsync(Common.Page.PageParameter request);
  16. Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync(List<int> ids);
  17. }
  18. }