/// <summary>
        /// Given string of eventDetailIDs, buildls a List of works that populates the repertoire search results.
        /// </summary>
        /// <param name="eventDetailIDs"></param>
        /// <returns></returns>
        public static List<WorkDTO> GetWorkDTOByEventDetailIDs(string eventDetailIDs)
        {
            var repertoireDTO = new RepertoireDTO();

            repertoireDTO.ConstructDTO(eventDetailIDs);

            return repertoireDTO.works;
        }
Example #2
0
        /// <summary>
        /// Given string of eventDetailIDs, buildls a List of works that populates the repertoire search results.
        /// </summary>
        /// <param name="eventDetailIDs"></param>
        /// <returns></returns>
        public static List <WorkDTO> GetWorkDTOByEventDetailIDs(string eventDetailIDs)
        {
            var repertoireDTO = new RepertoireDTO();

            repertoireDTO.ConstructDTO(eventDetailIDs);

            return(repertoireDTO.works);
        }