Пример #1
0
 public AvlData(AvlDataPriority priority, DateTime dateTime, GpsElement gps, IoElement data = null)
 {
     _priority = priority;
     _dateTime = dateTime;
     _gps      = gps;
     _data     = data;
 }
Пример #2
0
 public bool Equals(IoElement other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     return(ReferenceEquals(this, other) || _eventId == other._eventId && Equals(_properties, other._properties));
 }
Пример #3
0
 public GpsElementExt(GpsElement gps, IoElement io)
 {
     _gps = gps;
     _io  = io;
 }