Example #1
0
        static void addCustomerToOrder(string firstName, string lastName, OrderRepository orderRepository)
        {
            int customerId = orderRepository.GetCustomerId(firstName, lastName);

            orderRepository.AddCustomerToOrder(customerId);
        }