Exemple #1
0
 public HomeController(DrivingDbContext context)
 {
     _context = context;
 }
Exemple #2
0
 public DriversController(DrivingDbContext context)
 {
     _context = context;
 }
 public DrivingRepository(DrivingDbContext ctx)
 {
     _context = ctx;
 }