Пример #1
0
 public VehileRepository(SellCarDbContext context)
 {
     _context = context;
 }
Пример #2
0
 public UnitOfWork(SellCarDbContext context)
 {
     _context = context;
     Vehiles  = new VehileRepository(context);
 }