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