public LoanRepository(LoansContext context) { _context = context; }
public LoanTypesService(LoansContext context) { _context = context ?? throw new ArgumentNullException(nameof(context)); }
public BorrowerRepository(LoansContext context) { _context = context; }
public LoansController(LoansContext context) { _context = context; }
public ReportsRepository(LoansContext context) { _context = context; }
public LenderRepository(LoansContext context) { _context = context; }