Ejemplo n.º 1
0
 public Ship(string crewTier, int lastMaintenance, string weather, IInsuranceCalculator pc)
 {
     this.crewTier        = crewTier;
     this.lastMaintenance = lastMaintenance;
     this.weather         = weather;
     this.pc = pc;
 }
Ejemplo n.º 2
0
 public FlightStrategy(string pilotClass, int lastMaintenance, string weather, IInsuranceCalculator pc)
 {
     this.pilotClass      = pilotClass;
     this.lastMaintenance = lastMaintenance;
     this.weather         = weather;
     this.pc = pc;
 }
Ejemplo n.º 3
0
 public FlightStrategy(string pilotClass, int lastMaintenance, string weather, IInsuranceCalculator pc, int distance, string landingLocation, ITripCost tc) : this(pilotClass, lastMaintenance, weather, pc)
 {
     this.distance        = distance;
     this.landingLocation = landingLocation;
     this.tc = tc;
 }