Пример #1
0
 public UserController(AccountCreationService accountCreationService, ExistingUserService existingUserService)
 {
     _accountCreationService = accountCreationService;
     _existingUserService    = existingUserService;
 }
 public AccountServiceProxyImpl(AccountCreationService accountCreationService, AccountAuthenticationService accountAuthenticationService, AccountLookupService accountLookupService) {
    this.accountCreationService = accountCreationService;
    this.accountAuthenticationService = accountAuthenticationService;
    this.accountLookupService = accountLookupService;
 }