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