Ejemplo n.º 1
0
        /// <summary author="Caitlin Abelson" created="2019/03/28">
        /// The manager method to retrieve a list of the setups for the view model.
        /// </summary>
        /// <returns></returns>
        public List <VMSetup> SelectVMSetups()
        {
            List <VMSetup> vmSetup = new List <VMSetup>();

            try
            {
                vmSetup = _setupAccessor.SelectVMSetups();
            }
            catch (Exception ex)
            {
                ExceptionLogManager.getInstance().LogException(ex);
                throw ex;
            }

            return(vmSetup);
        }