//GET: Orders/AddToOrder
        public ActionResult AddToOrder(int id)
        {
            Tickets order = Tickets.GetOrder(this.HttpContext);

            order.AddToOrder(id);
            return(RedirectToAction("Index"));
        }