Beispiel #1
0
 public AccountRepository(BankLedgerContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public AccountController(BankLedgerContext context, IBankService bankService)
 {
     _context     = context;
     _bankService = bankService;
 }
 public TransactionRepository(BankLedgerContext context)
 {
     _context = context;
 }