示例#1
0
 public ActionResult <IEnumerable <Product> > Get()
 {
     try
     {
         return(Ok(_repository.GetAllProducts()));
     }
     catch (Exception ex)
     {
         _logger.LogError($"Failed to get products: {ex}");
         return(BadRequest("Failed to get products"));
     }
 }
示例#2
0
        public IActionResult Shop()
        {
            var result = _repository.GetAllProducts();

            return(View(result));
        }