public BorrowersController(BorrowerDbContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public BorrowerRepository(ILoggerFactory loggerFactory, BorrowerDbContext context)
 {
     _loggerFactory = loggerFactory;
     _context       = context;
 }