示例#1
0
        public int QueryItineraryPrice(Transaction context, Customer customer)
        {
            int bill = Flights.QueryReservedPrice(context, customer);

            bill += Cars.QueryReservedPrice(context, customer);
            bill += Rooms.QueryReservedPrice(context, customer);
            return(bill);
        }