Exemplo n.º 1
0
        /// <summary>
        /// Gets the scheduled event entry details of the specified event.
        /// </summary>
        /// <param name="eventId">Internal identifier of the event.</param>
        /// <param name="plotId">Internal identifier of the plot.</param>
        /// <returns>Scheduled event entry details of the specified event.</returns>
        public ScheduleInfo GetEventEntry(int eventId, int plotId)
        {
            // Get an instance of the Schedule DAO using the DALFactory
            ISchedule dao = (ISchedule)DALFactory.DAO.Create(DALFactory.Module.Schedule);

            ScheduleInfo schedule = dao.GetEventEntry(eventId, plotId);

            return(schedule);
        }