Example #1
0
 public CustomRoleBatchCommandHandler(ICustomRoleRepository customRoleRepository, IStringLocalizer <CommonTranslation> commonLocalizer, IMapper mapper, IIdentityService identityService)
 {
     this.customRoleRepository = customRoleRepository;
     this.commonLocalizer      = commonLocalizer;
     this.mapper          = mapper;
     this.identityService = identityService;
 }
Example #2
0
 public AccountUserRolePatchCommandHandler(IAccountRepository accountRepository, ICustomRoleRepository customRoleRepository, IIdentityService identityService, IStringLocalizer <CommonTranslation> commonLocalizer)
 {
     this.accountRepository    = accountRepository;
     this.customRoleRepository = customRoleRepository;
     this.identityService      = identityService;
     this.commonLocalizer      = commonLocalizer;
 }
Example #3
0
 public CustomRolePagingQueryHandler(ICustomRoleRepository customRoleRepository, IIdentityService identityService)
 {
     this.customRoleRepository = customRoleRepository;
     this.identityService      = identityService;
 }
Example #4
0
 public CheckExistAssetPointQueryHandler(IAccountRepository accountRepository, ICustomRoleRepository customRoleRepository)
 {
     this.accountRepository    = accountRepository;
     this.customRoleRepository = customRoleRepository;
 }
Example #5
0
 public CustomRoleCreateCommandHandler(ICustomRoleRepository customRoleRepository, IIdentityService identityService)
 {
     this.customRoleRepository = customRoleRepository;
     this.identityService      = identityService;
 }
Example #6
0
 public CustomRoleIdentityQueryHandler(ICustomRoleRepository customRoleRepository, IStringLocalizer <CommonTranslation> localizer)
 {
     this.customRoleRepository = customRoleRepository;
     this.localizer            = localizer;
 }
Example #7
0
 public AccountAccessPointQueryHandler(IAccountRepository accountRepository, ICustomRoleRepository customRoleRepository, IIdentityService identityService)
 {
     this.accountRepository    = accountRepository;
     this.customRoleRepository = customRoleRepository;
     this.identityService      = identityService;
 }
Example #8
0
 public RoleService(IRoleRepository roleRepository, ICustomRoleRepository customRoleRepository)
 {
     _roleRepository       = roleRepository;
     _customRoleRepository = customRoleRepository;
 }