public async Task <HttpResponse <Product[]> > GetByCategoryId(int categoryId) { return(Ok(await ApiInstance.GetProducts(categoryId))); }
public override async Task <HttpResponse <Product[]> > GetAsync(string endpointName = null, HttpRequest request = null) => Ok(await ApiInstance.GetProducts());