/// <summary author="Austin Berquam" created="2019/02/06">
        /// Method that collects the GuestType from the accessor
        /// </summary>
        /// <returns> List of GuestTypes </returns>
        public List <GuestType> RetrieveAllGuestTypes(string status)
        {
            List <GuestType> types = null;

            if (status != "")
            {
                try
                {
                    types = guestTypeAccessor.SelectGuestTypes(status);
                }
                catch (Exception ex)
                {
                    ExceptionLogManager.getInstance().LogException(ex);
                    throw ex;
                }
            }

            return(types);
        }