Пример #1
0
        public static List <Customer> GetCustomerByCustomerId(Guid customerId)
        {
            BusinessObjects _businessObjects = new BusinessObjects();
            List <Customer> customerList     = _businessObjects.GetCustomerByCustomerId(customerId);

            return(customerList);
        }