using System.Collections.Generic; using System.Threading.Tasks; using Datory; namespace GxPress.Repository.Interface.SystemRole { public interface ISystemRoleRepository : IRepository { Task InsertAsync(Entity.SystemRole.SystemRole model); Task UpdateAsync(Entity.SystemRole.SystemRole model); Task DeleteAsync(int id); Task> GetSystemRolesAllAsync(); Task GetRoleAsync(int id); } }