Exemplo n.º 1
0
 public BankAccountController(IBankAccountRepo bankAccountRepo, ApplicationDbContext context)
 {
     _bankAccountRepo = bankAccountRepo;
     _context         = context;
 }
Exemplo n.º 2
0
 public TransactionController(ITransactionRepo tranContext, IBankAccountRepo bankContext, ApplicationDbContext context)
 {
     _bankContext = bankContext;
     _tranContext = tranContext;
     _context     = context;
 }