1234567891011121314151617181920212223 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Datory;
- using GxPress.Common.Page;
- using GxPress.Request.SystemLabel;
- using GxPress.Result.SystemLabel;
- namespace GxPress.Repository.Interface.SystemLabel
- {
- public interface ISystemLabelRepository : IRepository
- {
- Task<Entity.SystemLabel.SystemLabel> GetAsync(int id);
- Task<bool> DeleteAsync(int id);
- Task<int> InsertAsync(Entity.SystemLabel.SystemLabel note);
- Task<bool> UpdateAsync(SystemLabelUpRequest note);
- Task<PagedList<SystemLabelResult>> GetAllAsync(Common.Page.PageParameter request);
- Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync(List<int> ids);
- }
- }
|