Пример #1
0
        public SecondStepLogin()
        {
            InitializeComponent();

            this.AuthenticationCommand = new MockAuthenticationCommand();
            this.OrganizationMembershipManagementQuery = new MockOrganizationMembershipManagementQuery();
        }
Пример #2
0
 public AuthenticationController(IAuthenticationCommand authenticationCommand,
                                 IAuthenticationQuery authenticationQuery,
                                 IOrganizationMembershipManagementQuery organizationMembershipManagementQuery)
 {
     _authenticationCommand = authenticationCommand;
     _authenticationQuery   = authenticationQuery;
     _organizationMembershipManagementQuery = organizationMembershipManagementQuery;
 }