public ActionResult AddBasket(int id) { orderManager.AddToBasket(id); return(RedirectToAction("Index", "Home")); }
public async Task <ActionResult> GetToBasket(Guid Id) { await orderManager.AddToBasket(Id); return(RedirectToAction("Index", "Home")); }