public UserService(SWD391Context context)
 {
     _context = context;
 }
 public CalculationService(SWD391Context context)
 {
     _context = context;
 }
 public BankService(SWD391Context context)
 {
     _context = context;
 }
 public CaculationController(SWD391Context context, ICalculationService calculationService)
 {
     _context            = context;
     _calculationService = calculationService;
 }
 public TransactionService(SWD391Context context)
 {
     _context = context;
 }
 public AuthController(SWD391Context context)
 {
     _context = context;
 }
Esempio n. 7
0
 public RateController(SWD391Context context)
 {
     _context = context;
 }
Esempio n. 8
0
 public TransactionsController(SWD391Context context, ITransactionService transactionService)
 {
     _context            = context;
     _transactionService = transactionService;
 }
 public BanksController(SWD391Context context, IBankService service)
 {
     _context     = context;
     _bankService = service;
 }
 public UsersController(SWD391Context context)
 {
     _context = context;
 }