using Microsoft.EntityFrameworkCore; using Ropin.Inspection.Model.Entities; using Ropin.Inspection.Model.ViewModel.SYS; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Repository.SYS.Interface { public interface IsysRoleHandRepository : IRepositoryBase, IRepositoryBaseById { Task CreateRoleHandAsync(TSYS_RoleHand entity); Task DeleteByRoleIdAsync(Guid roleId); Task DeleteRoleHandAsync(Guid roleId, Guid handCode); Task> GetList(Guid roleId); } }