using Ropin.Inspection.Model; using Ropin.Inspection.Model.Entities; using Ropin.Inspection.Model.ViewModel.SYS; using Ropin.Inspection.Service.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Security.Claims; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Service.SYS.Interface { public interface ITsysRoleHandServices : IBaseService, IBaseServiceById { Task CreateAsync(AddRoleHandModel viewModel); Task DeleteRoleHandAsync(Guid handCode, Guid roleCode); Task> GetRoleHandListAsync(Guid roleId); } }