示例#1
0
 // Add new busstop to the system
 private void AddBusStop(EzySystem ezySystem)
 {
     Console.Write("Please enter the name of the bus stop: ");
     string name = Console.ReadLine();
     ezySystem.CreateBusStop(name);
 }