Esempio n. 1
0
        public string CompanyApproved(Guid accId)
        {
            string result = String.Empty;

            try
            {
                PractitionerData dataLayer = new PractitionerData();
                result = dataLayer.CompanyApproved(accId);
            }
            catch (Exception err)
            {
                new LogHelper().LogMessage("PractitionerBusiness.CompanyApproved : " + err);
            }

            return(result);
        }