AK.F1.Timing.Model.Session.FastestTimesModel.FastestTimesModel C# (CSharp) Method

FastestTimesModel() public method

Initialises a new instance of the FastestTimesModel class and specifies the driver model provider.
/// Thrown when is . ///
public FastestTimesModel ( IDriverModelLocator driverLocator ) : System
driverLocator IDriverModelLocator The driver model provider.
return System
        public FastestTimesModel(IDriverModelLocator driverLocator)
        {
            Guard.NotNull(driverLocator, "driverLocator");

            DriverLocator = driverLocator;
            Builder = new FastestTimesModelBuilder(this);
        }