AK.F1.Timing.Model.Session.FastestTimesModel.FastestTimesModel C# (CSharp) 메소드

FastestTimesModel() 공개 메소드

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.
리턴 System
        public FastestTimesModel(IDriverModelLocator driverLocator)
        {
            Guard.NotNull(driverLocator, "driverLocator");

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