ITsysRoleHandServices.cs 696 B

1234567891011121314151617181920
  1. using Ropin.Inspection.Model;
  2. using Ropin.Inspection.Model.Entities;
  3. using Ropin.Inspection.Model.ViewModel.SYS;
  4. using Ropin.Inspection.Service.Interface;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Security.Claims;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace Ropin.Inspection.Service.SYS.Interface
  12. {
  13. public interface ITsysRoleHandServices : IBaseService<TSYSRoleHandViewModel>, IBaseServiceById<TSYSRoleHandViewModel, Guid>
  14. {
  15. Task CreateAsync(AddRoleHandModel viewModel);
  16. Task DeleteRoleHandAsync(Guid handCode, Guid roleCode);
  17. Task<IEnumerable<TSYSRoleHandModel>> GetRoleHandListAsync(Guid roleId);
  18. }
  19. }