Ejemplo n.º 1
0
 public Link(City from, City to, TransportModeEnum t = TransportModeEnum.Rail)
 {
     FromCity      = from;
     ToCity        = to;
     Distance      = from.Location.Distance(to.Location);
     TransportMode = t;
 }
Ejemplo n.º 2
0
 public Link(City from, City to, TransportModeEnum mode)
 {
     FromCity      = from;
     ToCity        = to;
     TransportMode = mode;
 }