コード例 #1
0
 public AddUserCommand(IEncryptor encryptor,
                       ISendNotificationCommand sendNotificationCommand,
                       IGetRavenInstancesQuery getRavenInstancesQuery)
 {
     _encryptor = encryptor;
     _sendNotificationCommand = sendNotificationCommand;
     _getRavenInstancesQuery  = getRavenInstancesQuery;
 }
コード例 #2
0
 public CreateOrganisationCommand(IGetAvailablePaymentPlansQuery getAvailablePaymentPlansQuery,
                                  IAddApplicationCommand addApplicationCommand,
                                  IEncryptor encryptor,
                                  IGetRavenInstancesQuery getRavenInstancesQuery)
 {
     _getAvailablePaymentPlansQuery = getAvailablePaymentPlansQuery;
     _addApplicationCommand         = addApplicationCommand;
     _encryptor = encryptor;
     _getRavenInstancesQuery = getRavenInstancesQuery;
 }
コード例 #3
0
 public EditUserCommand(IAuthorisationManager authorisationManager, IGetRavenInstancesQuery getRavenInstancesQuery)
 {
     _authorisationManager   = authorisationManager;
     _getRavenInstancesQuery = getRavenInstancesQuery;
 }