Ejemplo n.º 1
0
        /// <summary author="Caitlin Abelson" created="2019/03/28">
        /// The manager method for selecting a setup by an event title
        /// </summary>
        /// <param name="eventTitle"></param>
        /// <returns></returns>
        public List <VMSetup> SelectSetupEventTitle(string eventTitle)
        {
            List <VMSetup> setup = new List <VMSetup>();

            try
            {
                setup = _setupAccessor.SelectSetupEventTitle(eventTitle);
            }
            catch (Exception ex)
            {
                ExceptionLogManager.getInstance().LogException(ex);
                throw ex;
            }
            return(setup);
        }