public IReadOnlyCollection <Product> GetAll() { return(_productContext.GetAll()); }
public List <Product> GetAll() { return(Context.GetAll()); }
public IEnumerable <Product> GetAll(int page) { return(context.GetAll(page)); }