public Product GetById(Guid Id) { return(_lunaPetShopContext.products .AsQueryable() .Where(ProductQuery.GetById(Id)) .FirstOrDefault()); }
public Product GetProductById(int id) { ProductQuery pc = new ProductQuery(context); return(pc.GetById(id).FirstOrDefault()); }