Exemplo n.º 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;
 }
Exemplo n.º 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;
 }
Exemplo n.º 3
0
 public CustomRolePagingQueryHandler(ICustomRoleRepository customRoleRepository, IIdentityService identityService)
 {
     this.customRoleRepository = customRoleRepository;
     this.identityService      = identityService;
 }
Exemplo n.º 4
0
 public CheckExistAssetPointQueryHandler(IAccountRepository accountRepository, ICustomRoleRepository customRoleRepository)
 {
     this.accountRepository    = accountRepository;
     this.customRoleRepository = customRoleRepository;
 }
Exemplo n.º 5
0
 public CustomRoleCreateCommandHandler(ICustomRoleRepository customRoleRepository, IIdentityService identityService)
 {
     this.customRoleRepository = customRoleRepository;
     this.identityService      = identityService;
 }
Exemplo n.º 6
0
 public CustomRoleIdentityQueryHandler(ICustomRoleRepository customRoleRepository, IStringLocalizer <CommonTranslation> localizer)
 {
     this.customRoleRepository = customRoleRepository;
     this.localizer            = localizer;
 }
Exemplo n.º 7
0
 public AccountAccessPointQueryHandler(IAccountRepository accountRepository, ICustomRoleRepository customRoleRepository, IIdentityService identityService)
 {
     this.accountRepository    = accountRepository;
     this.customRoleRepository = customRoleRepository;
     this.identityService      = identityService;
 }
Exemplo n.º 8
0
 public RoleService(IRoleRepository roleRepository, ICustomRoleRepository customRoleRepository)
 {
     _roleRepository       = roleRepository;
     _customRoleRepository = customRoleRepository;
 }