Exemplo n.º 1
0
 public AccountUnitOfWork(AccountContext context)
 {
     this.context = context;
     _accountApplicationRepository = new AccountApplicationRepository(context);
     _accountRepository            = new AccountRepository(context);
 }
Exemplo n.º 2
0
 public AccountRepository(AccountContext context)
 {
     this.context = context;
 }
 public AccountApplicationRepository(AccountContext context)
 {
     this.context = context;
 }