public static string GetAllPAObjeCtategories()
        {
            string rtnVal = string.Empty;

            var proxy = new BusinessProxy();

            try
            {
                rtnVal = proxy.GetAllPAObjectCategories();
            }
            catch (Exception ex)
            {
                Log.Error(ex);
            }

            return(rtnVal);
        }