using System.Collections.Generic; using System.Threading.Tasks; using Datory; 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(Entity.SystemLabel.SystemLabel note); Task> GetAllAsync(); } }