public ActionResult Index(int?count)
        {
            var events = EventServices.GetEventsByDirector(CurrentCedUser.CurrentUser.Email, Constants.ValidEventTypesForCed, WebConfigHelper.MinFinancialYear, count);
            var model  = Mapper.Map <List <EventEntity>, List <EventListModel> >(events.ToList());

            return(View(model));
        }