public ActionResult RemoveCart(int id)
 {
     try
     {
         string cart = _cartRepo.RemoveCart(id);
         ViewBag.Message = cart;
     }
     catch (Exception)
     {
         throw;
     }
     return(RedirectToAction("MyCart"));
 }