示例#1
0
 public Watch(Flight flight)
     : this()
 {
     Flight = flight;
     FlightId = flight.Id.ToString();
 }
 public string GetFlightCost(Flight source)
 {
     var haul = _destinationHauls[source.DestinationAirport.Code];
     return "£" + ((int)haul) + ".00";
 }