public DarwinService(string _rsid, 
     DateTime? _scheduledArrivalTime,
     DateTime? _estimatedArrivalTime,
     DateTime? _scheduledDepartureTime,
     DateTime? _estimatedDepartureTime,
     string _platform,
     string _toc,
     string _operatorCode,
     bool? _isCircularRoute,
     bool _isCancelled,
     bool _filterLocationCancelled,
     DarwinServiceType _serviceType,
     int _length,
     bool _detachFront,
     bool _isReverseFormation,
     string _delayReason,
     string _cancelReason,
     string _serviceID,
     string[] _adhocAlerts
     )
 {
     rsid = _rsid;
     scheduledArrivalTime = _scheduledArrivalTime;
     estimatedArrivalTime= _estimatedArrivalTime;
     scheduledDepartureTime= _scheduledDepartureTime;
     estimatedArrivalTime =_estimatedDepartureTime;
     platform =_platform;
     toc= _toc;
     operatorCode = _operatorCode;
     isCircularRoute = _isCircularRoute;
     isCancelled = _isCancelled;
     filterLocationCancelled = _filterLocationCancelled;
     serviceType = _serviceType;
     length = _length;
     detachFront = _detachFront;
     isReverseFormation = _isReverseFormation;
     delayReason = _delayReason;
     cancelReason = _cancelReason;
     serviceID = _serviceID;
     adhocAlerts = _adhocAlerts;
 }
Exemple #2
0
 public DarwinService(string _rsid,
                      DateTime?_scheduledArrivalTime,
                      DateTime?_estimatedArrivalTime,
                      DateTime?_scheduledDepartureTime,
                      DateTime?_estimatedDepartureTime,
                      string _platform,
                      string _toc,
                      string _operatorCode,
                      bool?_isCircularRoute,
                      bool _isCancelled,
                      bool _filterLocationCancelled,
                      DarwinServiceType _serviceType,
                      int _length,
                      bool _detachFront,
                      bool _isReverseFormation,
                      string _delayReason,
                      string _cancelReason,
                      string _serviceID,
                      string[] _adhocAlerts
                      )
 {
     rsid = _rsid;
     scheduledArrivalTime   = _scheduledArrivalTime;
     estimatedArrivalTime   = _estimatedArrivalTime;
     scheduledDepartureTime = _scheduledDepartureTime;
     estimatedArrivalTime   = _estimatedDepartureTime;
     platform                = _platform;
     toc                     = _toc;
     operatorCode            = _operatorCode;
     isCircularRoute         = _isCircularRoute;
     isCancelled             = _isCancelled;
     filterLocationCancelled = _filterLocationCancelled;
     serviceType             = _serviceType;
     length                  = _length;
     detachFront             = _detachFront;
     isReverseFormation      = _isReverseFormation;
     delayReason             = _delayReason;
     cancelReason            = _cancelReason;
     serviceID               = _serviceID;
     adhocAlerts             = _adhocAlerts;
 }