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