예제 #1
0
 public CustomerController(BankAppContext context)
 {
     repo = new Wrapper(context);
 }
 public PayeeRepository(BankAppContext context) : base(context)
 {
 }
예제 #3
0
 public AccountsController(BankAppContext context, ILogger <AccountsController> logger)
 {
     _context = context;
     _logger  = logger;
 }
예제 #4
0
 public CustomerRepository(BankAppContext context) : base(context)
 {
 }
 public AccountRepository(BankAppContext context) : base(context)
 {
 }
예제 #6
0
 public BillPayRepository(BankAppContext context) : base(context)
 {
 }
예제 #7
0
 public OfferTypesController(BankAppContext context)
 {
     _context = context;
 }
 public ConditionsController(BankAppContext context)
 {
     _context = context;
 }
예제 #9
0
 public UsersController(BankAppContext context)
 {
     _context = context;
 }
 public LoginRepository(BankAppContext context) : base(context)
 {
 }
예제 #11
0
 public TransactionsController(BankAppContext context)
 {
     _context = context;
 }
예제 #12
0
 public Repository(BankAppContext context) => _context = context;
 public MyStatementsController(BankAppContext context)
 {
     repo = new Wrapper(context);
 }
 public TransactionRepository(BankAppContext context) : base(context)
 {
 }
예제 #15
0
 public ClientsController(BankAppContext context)
 {
     _context = context;
 }
 public BillPayController(BankAppContext context)
 {
     repo = new Wrapper(context);
 }
예제 #17
0
 public LoginController(BankAppContext context)
 {
     repo = new Wrapper(context);
 }