using System.Collections.Generic; using System.Threading.Tasks; using Datory; namespace GxPress.Repository.Interface.Menus { public interface IMenusRepository : IRepository { Task InsertAsync(Entity.Menus.Menus model); Task UpdateAsync(Entity.Menus.Menus model); Task DeleteAsync(int id); Task> GetAllAsync(); Task> GetAllAsync(List menusIds); Task> GetAllMenusAsync(List menusIds); } }