ISystemLabelRepository.cs 630 B

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