public static List<Customer> GetCustomerByEmail(string emailAddress)
 {
     BusinessObjects _businessObjects = new BusinessObjects();
     List<Customer> customerList = _businessObjects.GetCustomerByEmail(emailAddress);
     return customerList;
 }