예제 #1
0
 // GET: ProductCategory/Details/5
 public ActionResult Details(int id)
 {
     try
     {
         var model = _productCategoryService.GetProductCategoryDetails(id);
         return(View(model));
     }
     catch
     {
         return(RedirectToAction(nameof(Index)));
     }
 }