Exemplo n.º 1
0
 public LoanRepository(LoansContext context)
 {
     _context = context;
 }
 public LoanTypesService(LoansContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
Exemplo n.º 3
0
 public BorrowerRepository(LoansContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public LoansController(LoansContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public ReportsRepository(LoansContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public LenderRepository(LoansContext context)
 {
     _context = context;
 }