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

DriverModelBuilder() public method

Initialises a new instance of the DriverModelBuilder class and specifies the model to build.
/// Thrown when is . ///
public DriverModelBuilder ( DriverModel model ) : System
model DriverModel The model to build.
return System
            public DriverModelBuilder(DriverModel model)
            {
                Guard.NotNull(model, "model");

                Model = model;
            }