Exemple #1
0
 public GlobalConfigurationHandler(
     ISsoUnitOfWork uow,
     IMediatorHandler bus,
     INotificationHandler <DomainNotification> notifications,
     IGlobalConfigurationSettingsRepository globalConfigurationSettingsRepository) : base(uow, bus, notifications)
 {
     _globalConfigurationSettingsRepository = globalConfigurationSettingsRepository;
 }
Exemple #2
0
 public RoleCommandHandler(
     ISsoUnitOfWork uow,
     IMediatorHandler bus,
     INotificationHandler <DomainNotification> notifications,
     IRoleService roleService,
     IUserService userService) : base(uow, bus, notifications)
 {
     _roleService = roleService;
     _userService = userService;
 }
Exemple #3
0
 public EmailCommandHandler(
     ISsoUnitOfWork uow,
     IMediatorHandler bus,
     INotificationHandler <DomainNotification> notifications,
     ITemplateRepository templateRepository,
     IEmailRepository emailRepository) : base(uow, bus, notifications)
 {
     _templateRepository = templateRepository;
     _emailRepository    = emailRepository;
 }
 public UserManagementCommandHandler(
     ISsoUnitOfWork uow,
     IMediatorHandler bus,
     INotificationHandler <DomainNotification> notifications,
     IUserService userService,
     ISystemUser user)
     : base(uow, bus, notifications)
 {
     _userService = userService;
     _user        = user;
 }
 public GlobalConfigurationAppService(
     IMapper mapper,
     IGlobalConfigurationSettingsRepository globalConfigurationSettingsRepository,
     ISsoUnitOfWork unitOfWork,
     ISystemUser systemUser)
 {
     _mapper = mapper;
     _globalConfigurationSettingsRepository = globalConfigurationSettingsRepository;
     _unitOfWork = unitOfWork;
     _systemUser = systemUser;
 }
Exemple #6
0
 public UserCommandHandler(
     ISsoUnitOfWork uow,
     IMediatorHandler bus,
     INotificationHandler <DomainNotification> notifications,
     IUserService userService,
     IEmailService emailService,
     IEmailRepository emailRepository) : base(uow, bus, notifications)
 {
     _userService     = userService;
     _emailService    = emailService;
     _emailRepository = emailRepository;
 }
Exemple #7
0
 public UserService(ISsoUnitOfWork unitOfWork)
     : base(unitOfWork)
 {
 }