Exemple #1
0
        /// <summary>
        /// Gets the design details of the specified event.
        /// </summary>
        /// <param name="eventId">Internal identifier of the event.</param>
        /// <returns>Design details of the specified event.</returns>
        public DesignInfo GetDesign(int eventId)
        {
            // Get an instance of the Schedule DAO using the DALFactory
            ISchedule dao = (ISchedule)DALFactory.DAO.Create(DALFactory.Module.Schedule);

            DesignInfo design = dao.GetDesign(eventId);

            return(design);
        }