// Adding item to basket
 public ActionResult AddToBasket(int id)
 {
     basketManager.AddToBucket(id);
     return(RedirectToAction("Index"));
 }