Skip to content

Commit

Permalink
Merge pull request #355 from holeng-boxfusion-io/main
Browse files Browse the repository at this point in the history
Rename sha role appointed person app service
  • Loading branch information
Lukeybooi committed Jul 4, 2023
2 parents 8c18574 + c18d8c1 commit 6bbe036
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
namespace Shesha.ShaRoleAppointedPersons
{
[AbpAuthorize(PermissionNames.Pages_Roles)]
public class ShaRoleAppointedPersonAppService : SheshaCrudServiceBase<ShaRoleAppointedPerson, ShaRoleAppointedPersonDto, Guid, FilteredPagedAndSortedResultRequestDto, CreateShaRoleAppointedPersonDto, ShaRoleAppointedPersonDto>, IShaRoleAppointedPersonAppService
public class ShaRoleAppointedPersonActionsAppService : SheshaCrudServiceBase<ShaRoleAppointedPerson, ShaRoleAppointedPersonDto, Guid, FilteredPagedAndSortedResultRequestDto, CreateShaRoleAppointedPersonDto, ShaRoleAppointedPersonDto>, IShaRoleAppointedPersonAppService
{
private readonly IRepository<ShaRole, Guid> _roleRepository;
private readonly IRepository<ShaRoleAppointmentEntity, Guid> _appEntityRepository;
private readonly IRepository<Person, Guid> _personRepository;
private readonly IRepository<Area, Guid> _areaRepository;
private readonly IShaPermissionChecker _shaPermissionChecker;

public ShaRoleAppointedPersonAppService(IRepository<ShaRoleAppointedPerson, Guid> repository, IRepository<ShaRole, Guid> roleRepository, IRepository<ShaRoleAppointmentEntity, Guid> appEntityRepository, IRepository<Person, Guid> personRepository, IRepository<Area, Guid> areaRepository, IShaPermissionChecker shaPermissionChecker) : base(repository)
public ShaRoleAppointedPersonActionsAppService(IRepository<ShaRoleAppointedPerson, Guid> repository, IRepository<ShaRole, Guid> roleRepository, IRepository<ShaRoleAppointmentEntity, Guid> appEntityRepository, IRepository<Person, Guid> personRepository, IRepository<Area, Guid> areaRepository, IShaPermissionChecker shaPermissionChecker) : base(repository)
{
_roleRepository = roleRepository;
_appEntityRepository = appEntityRepository;
Expand Down

0 comments on commit 6bbe036

Please sign in to comment.