public static List<Customer> GetCustomerByCustomerId(Guid customerId)
 {
     BusinessObjects _businessObjects = new BusinessObjects();
     List<Customer> customerList = _businessObjects.GetCustomerByCustomerId(customerId);
     return customerList;
 }