示例#1
0
        public static List <Customer> GetCustomerByFirstName(string firstName)
        {
            BusinessObjects _businessObjects = new BusinessObjects();
            List <Customer> customerList     = _businessObjects.GetCustomerByFirstName(firstName);

            return(customerList);
        }