AK.F1.Timing.Model.Grid.GridRowModelBase.GridRowModelBase C# (CSharp) Method

GridRowModelBase() protected method

Initialises a new instance of the GridRowModelBase.
protected GridRowModelBase ( int id ) : System
id int The row Id.
return System
        protected GridRowModelBase(int id)
        {
            Id = id;
            Position = new GridColumnModel(GridColumn.Position);
            CarNumber = new GridColumnModel(GridColumn.CarNumber);
            DriverName = new GridColumnModel(GridColumn.DriverName);
            S1 = new GridColumnModel(GridColumn.S1);
            S2 = new GridColumnModel(GridColumn.S2);
            S3 = new GridColumnModel(GridColumn.S3);
        }