/// <summary> /// Bobby Thorne /// 4/7/2017 /// /// Calls the accessor method to approve Commercial Customers and updates who made the change /// </summary> /// <param name="commercialCustomer"></param> /// <param name="approvedBy"></param> /// <returns></returns> public bool ApproveCommercialCustomer(CommercialCustomer commercialCustomer, int approvedby) { try { if (CustomerAccessor.ApproveCommercialCustomer(commercialCustomer, approvedby) > 0) { return(true); } } catch (Exception ex) { throw ex; } return(false); }