/// <summary> /// Initializes a new instance of the <see cref="OverheidApi"/> class. /// </summary> /// <param name="client">The client used for webrequests.</param> public OverheidApi(HttpClient client) : base(client) { Vehicles = new VehicleApi(Client); }
/// <summary> /// Initializes a new instance of the <see cref="OverheidApi"/> class. /// </summary> public OverheidApi() : base() { Vehicles = new VehicleApi(Client); }