Exemplo n.º 1
0
        public static List <Customer> GetCustomerByEmail(string emailAddress)
        {
            BusinessObjects _businessObjects = new BusinessObjects();
            List <Customer> customerList     = _businessObjects.GetCustomerByEmail(emailAddress);

            return(customerList);
        }