public ActionResult ShowDetailProduct(long id)
 {
     Session["RelatedProduct"] = shoppingService.GetRandomProductByCategory(id);
     return(View(shoppingService.GetDetailProduct(id)));
 }