Exemple #1
0
 public BlackListController(ICacheClient cache,
                            IServerSettings serverSettings,
                            IBlackListEntryService blackListService)
     : base(cache, serverSettings)
 {
     _blackListService = blackListService;
 }
Exemple #2
0
 public RegisterAccountService(ICommandBus commandBus, IAccountDao accountDao, IServerSettings serverSettings, IBlackListEntryService blackListEntryService)
 {
     _commandBus            = commandBus;
     _accountDao            = accountDao;
     _serverSettings        = serverSettings;
     _blackListEntryService = blackListEntryService;
     _resources             = new Resources.Resources(serverSettings);
 }
Exemple #3
0
 public ConfirmAccountService(ICommandBus commandBus, IAccountDao accountDao, ITemplateService templateService, IBlackListEntryService blackListEntryService,
                              IServerSettings serverSettings)
 {
     _accountDao            = accountDao;
     _templateService       = templateService;
     _serverSettings        = serverSettings;
     _commandBus            = commandBus;
     _blackListEntryService = blackListEntryService;
     _resources             = new Resources.Resources(serverSettings);
 }