IMiddleLableRepository.cs 572 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Datory;
  4. namespace GxPress.Repository.Interface.Navigation
  5. {
  6. public interface IMiddleLableRepository : IRepository
  7. {
  8. Task<Entity.Navigations.MiddleLable> GetAsync(int id);
  9. Task<bool> DeleteAsync(int id);
  10. Task<int> InsertAsync(Entity.Navigations.MiddleLable note);
  11. Task<bool> UpdateAsync(Entity.Navigations.MiddleLable note);
  12. Task<bool> UpdateAsync(SqlKata.Query query);
  13. Task<IEnumerable<Entity.Navigations.MiddleLable>> GetAllAsync();
  14. }
  15. }