public AccountController(IAccountDataGateway gateway)
 {
     _gateway = gateway;
 }
Esempio n. 2
0
 public RegistrationService(IUserDataGateway userDataGateway, IAccountDataGateway accountDataGateway)
 {
     _userDataGateway    = userDataGateway;
     _accountDataGateway = accountDataGateway;
 }
Esempio n. 3
0
 public AccountService(IAccountDataGateway accountDataGateway)
 {
     this.accountDataGateway = accountDataGateway;
 }