Beispiel #1
0
 public Route(Place startingPoint, Place destination, Path path, RouteType type, string name)
     : this(startingPoint, destination)
 {
     this.path = path;
     this.type = type;
     this.name = name;
 }
Beispiel #2
0
 public Route()
 {
     startingPoint = new Place();
     destination = new Place();
     type = new RouteType();
     path = new Path();
 }