/// <summary>
        /// This is the default Action.
        /// </summary>
        public ActionResult Index()
        {
            var eventManager = new EventsManager();
            var model = new ArnobMVCEventsModel();

            if (List != Guid.Empty)
            {
                model.Events = eventManager.GetEvent(List);
            }
            else
            {
                model.Events = new ArnobMVCEventsModel().Events;
            }

            return View("Default", model);
        }