public VehileRepository(SellCarDbContext context)
 {
     _context = context;
 }
Exemple #2
0
 public UnitOfWork(SellCarDbContext context)
 {
     _context = context;
     Vehiles  = new VehileRepository(context);
 }