Exemplo n.º 1
0
 public AppHarborController(ICreateOrganisationCommand createOrganisationCommand, IDeleteOrganisationCommand deleteOrganisationCommand, IAuthenticationManager authenticationManager, ISetExternallyBilledSubscriptionCommand setExternallyBilledSubscriptionCommand)
 {
     _createOrganisationCommand = createOrganisationCommand;
     _deleteOrganisationCommand = deleteOrganisationCommand;
     _authenticationManager     = authenticationManager;
     _setExternallyBilledSubscriptionCommand = setExternallyBilledSubscriptionCommand;
 }
Exemplo n.º 2
0
 public AuthenticationController(IAuthenticateUserCommand authenticateUserCommand,
                                 IAuthenticationManager authenticationManager,
                                 ISetPasswordCommand setPasswordCommand,
                                 IResetPasswordCommand resetPasswordCommand,
                                 ICreateOrganisationCommand createOrganisationCommand,
                                 ICookieManager cookieManager,
                                 IImpersonationManager impersonationManager)
 {
     _authenticateUserCommand   = authenticateUserCommand;
     _authenticationManager     = authenticationManager;
     _setPasswordCommand        = setPasswordCommand;
     _resetPasswordCommand      = resetPasswordCommand;
     _createOrganisationCommand = createOrganisationCommand;
     _cookieManager             = cookieManager;
     _impersonationManager      = impersonationManager;
 }