コード例 #1
0
ファイル: MyWC.cs プロジェクト: william-andrew/william-andrew
        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);
        }