示例#1
0
 // Display bus services route
 private void DisplayBusServiceRoute(EzySystem ezySystem)
 {
     Console.Write("Please enter the name of the bus service that you want to view: ");
     string busName = Console.ReadLine();
     Console.WriteLine(ezySystem.GetRoute(busName));
 }