//
        // GET: /Events/

        public ActionResult Index()
        {
            var ctx = new TicketMasterEntities();

            var events = ctx.GetEvents();

            return(View(events));
        }
        //
        // GET: /Events/
        public ActionResult Index()
        {
            var ctx = new TicketMasterEntities();

            var events = ctx.GetEvents();

            return View(events);
        }