public TransactionService(TrapezaDBContext dBContext, IAccountService account, ICustomerService customer)
 {
     _dBContext = dBContext;
     _account   = account;
     _customer  = customer;
 }
Example #2
0
 public CustomerService(TrapezaDBContext dbContext)
 {
     _dbContext = dbContext;
 }
 public AccountService(TrapezaDBContext dBContext, ICustomerService customer)
 {
     _dBContext = dBContext;
     _customer  = customer;
 }