private int GetEditionListItemsCount(int?eventId, string directorEmail, string[] regions, string country, string city, int[] statusId, int[] eventActivityId, int[] eventTypeId)
        {
            var statusTypes     = GetEditionStatusTypes(statusId);
            var eventActivities = GetEventActivities(eventActivityId);
            var eventTypes      = GetEventTypes(eventTypeId);
            var editionsCount   = EditionServices.GetEditionsCount2(directorEmail, eventId, false, null, statusTypes, eventTypes, eventActivities, null, country, city);

            return(editionsCount);
        }