AK.F1.Timing.Model.Driver.LapTimesModel.LapTimesModel C# (CSharp) Method

LapTimesModel() public method

Initialises a new instance of the LapTimesModel class.
public LapTimesModel ( ) : System
return System
        public LapTimesModel()
        {
            S1 = new PostedTimeCollectionModel();
            S2 = new PostedTimeCollectionModel();
            S3 = new PostedTimeCollectionModel();
            Subscribe(S3.Items, OnCollectionChanged);
            Laps = new PostedTimeCollectionModel();
            InnerHistory = new ObservableCollection<LapHistoryEntry>();
            History = new ReadOnlyObservableCollection<LapHistoryEntry>(InnerHistory);
        }