using System.Collections.Generic; using System.Threading.Tasks; using Datory; using GxPress.Request.SystemLabel; namespace GxPress.Repository.Interface.SystemLabel { public interface ISystemLabelRepository : IRepository { Task GetAsync(int id); Task DeleteAsync(int id); Task InsertAsync(Entity.SystemLabel.SystemLabel note); Task UpdateAsync(SystemLabelUpRequest note); Task> GetAllAsync(); Task> GetAllAsync(List ids); } }