Example #1
0
 public CarRepository(CarAPIContext context)
 {
     _context = context;
 }
 public CarRepository(CarAPIContext context)
 {
     _context = context;
     _context.Database.EnsureCreated();
 }
Example #3
0
 public CarRepository()
 {
     _context = new CarAPIContext();
 }
Example #4
0
 public CarsController(CarAPIContext context)
 {
     _context = context;
 }