public UnitOfWork(WebMotorsContext context) { _context = context; }
public ARepository(IUnitOfWork uow) { _unitOfWork = uow; _context = uow.GetContext() as WebMotorsContext; _dbSet = _context.Set <TEntity>(); }