示例#1
0
 public DockingGrantedEvent(DateTime timestamp, string station, string stationType, long marketId, int landingpad) : base(timestamp, NAME)
 {
     this.station           = station;
     this.stationDefinition = StationModels.FromEDName(stationType);
     this.marketId          = marketId;
     this.landingpad        = landingpad;
 }
示例#2
0
 public DockingDeniedEvent(DateTime timestamp, string station, string stationType, long marketId, string reason) : base(timestamp, NAME)
 {
     this.station           = station;
     this.stationDefinition = StationModels.FromEDName(stationType);
     this.marketId          = marketId;
     this.reason            = reason;
 }
示例#3
0
 public DockingCancelledEvent(DateTime timestamp, string station, string stationType) : base(timestamp, NAME)
 {
     this.station           = station;
     this.stationDefinition = StationModels.FromEDName(stationType);
 }
示例#4
0
 public DockingRequestedEvent(DateTime timestamp, string station, string stationType, long marketId) : base(timestamp, NAME)
 {
     this.station           = station;
     this.stationDefinition = StationModels.FromEDName(stationType);
     this.marketId          = marketId;
 }