コード例 #1
0
        public void NotifyLapUnloaded(LapSummaryDto lapSummaryDto)
        {
            LapSummaryArgs args = new LapSummaryArgs(lapSummaryDto);

            LapUnloaded?.Invoke(this, args);
        }
コード例 #2
0
        public void NotifyReferenceLapSelected(LapSummaryDto referenceLap)
        {
            LapSummaryArgs args = new LapSummaryArgs(referenceLap);

            ReferenceLapSelected?.Invoke(this, args);
        }
コード例 #3
0
        public void NotifyLappAddedToSession(LapSummaryDto lapSummaryDto)
        {
            LapSummaryArgs args = new LapSummaryArgs(lapSummaryDto);

            LapAddedToSession?.Invoke(this, args);
        }