1234567891011121314151617181920 |
- 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<TSYSRoleHandViewModel>, IBaseServiceById<TSYSRoleHandViewModel, Guid>
- {
- Task CreateAsync(AddRoleHandModel viewModel);
- Task DeleteRoleHandAsync(Guid handCode, Guid roleCode);
- Task<IEnumerable<TSYSRoleHandModel>> GetRoleHandListAsync(Guid roleId);
- }
- }
|