public EchoDetectedDomainEvent(RadarPulse pulse, IRadarDetectable detectedRadarObject) { var radarEcho = new RadarEcho(pulse, detectedRadarObject); Echo = radarEcho; }
public bool Equals([AllowNull] IRadarDetectable other) { if (other == null) { return(false); } return(this.EchoID == other.EchoID); }