public void NotifyLapUnloaded(LapSummaryDto lapSummaryDto)
        {
            LapSummaryArgs args = new LapSummaryArgs(lapSummaryDto);

            LapUnloaded?.Invoke(this, args);
        }
        public void NotifyReferenceLapSelected(LapSummaryDto referenceLap)
        {
            LapSummaryArgs args = new LapSummaryArgs(referenceLap);

            ReferenceLapSelected?.Invoke(this, args);
        }
        public void NotifyLappAddedToSession(LapSummaryDto lapSummaryDto)
        {
            LapSummaryArgs args = new LapSummaryArgs(lapSummaryDto);

            LapAddedToSession?.Invoke(this, args);
        }