コード例 #1
0
 public CalculatePrice()
 {
     display            = new Display();
     transport          = new Transport(display.kilometers, display.time);
     display.totalPrice = transport.CalculatePrice();
     display.ShowCheapestWayToTravel();
 }