public List <JsonMeetingPlaces> GetAllMeetingPlaces()
        {
            var result = new List <JsonMeetingPlaces>();

            SPSecurity.RunWithElevatedPrivileges(delegate()
            {
                MeetingPlacesBLL _MeetingPlacesBLL = new MeetingPlacesBLL();
                result = _MeetingPlacesBLL.GetAll();
            });
            return(result);
        }