public ResetPasswordCommand(IEncryptor encryptor,
                             ISendNotificationCommand sendNotificationCommand, IGetOrganisationsByEmailAddressCommand getOrganisationsByEmailAddressCommand)
 {
     _encryptor = encryptor;
     _sendNotificationCommand = sendNotificationCommand;
     _getOrganisationsByEmailAddressCommand = getOrganisationsByEmailAddressCommand;
 }
 public UpdateIssueDetailsCommand(IAuthorisationManager authorisationManager,
                                  ISendNotificationCommand sendNotificationCommand,
                                  IGetUserQuery getUserQuery)
 {
     _authorisationManager    = authorisationManager;
     _sendNotificationCommand = sendNotificationCommand;
     _getUserQuery            = getUserQuery;
 }
 public AttachToExistingIssueCommand(ISendNotificationCommand sendNotificationCommand,
                                     ErrorditeConfiguration configuration,
                                     IMakeExceededErrorsUnloggedCommand makeExceededErrorsUnloggedCommand)
 {
     _sendNotificationCommand           = sendNotificationCommand;
     _configuration                     = configuration;
     _makeExceededErrorsUnloggedCommand = makeExceededErrorsUnloggedCommand;
 }
Esempio n. 4
0
 public AttachToNewIssueCommand(IMatchRuleFactoryFactory matchRuleFactoryFactory,
                                ISendNotificationCommand sendNotificationCommand,
                                IReceptionServiceIssueCache receptionServiceIssueCache)
 {
     _matchRuleFactoryFactory    = matchRuleFactoryFactory;
     _sendNotificationCommand    = sendNotificationCommand;
     _receptionServiceIssueCache = receptionServiceIssueCache;
 }
Esempio n. 5
0
 public AddUserCommand(IEncryptor encryptor,
                       ISendNotificationCommand sendNotificationCommand,
                       IGetRavenInstancesQuery getRavenInstancesQuery)
 {
     _encryptor = encryptor;
     _sendNotificationCommand = sendNotificationCommand;
     _getRavenInstancesQuery  = getRavenInstancesQuery;
 }
 public EmailTestController(IGetEmailInfoQuery getEmailInfoQuery,
                            ISendEmailCommand sendEmailCommand,
                            ISendNotificationCommand sendNotificationCommand,
                            IEmailNamingMapper mapper)
 {
     _getEmailInfoQuery       = getEmailInfoQuery;
     _sendEmailCommand        = sendEmailCommand;
     _sendNotificationCommand = sendNotificationCommand;
     _mapper = mapper;
 }
Esempio n. 7
0
 public UsersController(IAddUserCommand addUserCommand,
                        IEditUserCommand editUserCommand,
                        IDeleteUserCommand deleteUserCommand,
                        IPagingViewModelGenerator pagingViewModelGenerator,
                        IGetUserQuery getUserQuery,
                        ISendNotificationCommand sendNotificationCommand,
                        IEncryptor encryptor,
                        IAuthenticationManager authenticationManager)
 {
     _addUserCommand           = addUserCommand;
     _editUserCommand          = editUserCommand;
     _deleteUserCommand        = deleteUserCommand;
     _pagingViewModelGenerator = pagingViewModelGenerator;
     _getUserQuery             = getUserQuery;
     _sendNotificationCommand  = sendNotificationCommand;
     _encryptor             = encryptor;
     _authenticationManager = authenticationManager;
 }