using System.Collections.Generic; using System.Threading.Tasks; using Datory; namespace GxPress.Repository.Interface.Navigation { public interface IMiddleLableRepository : IRepository { Task GetAsync(int id); Task DeleteAsync(int id); Task InsertAsync(Entity.Navigations.MiddleLable note); Task UpdateAsync(Entity.Navigations.MiddleLable note); Task UpdateAsync(SqlKata.Query query); Task> GetAllAsync(); } }