Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="VehicleApi"/> class.
 /// </summary>
 /// <param name="client">The client used for webrequests.</param>
 public VehicleApi(HttpClient client)
     : base(client)
 {
     Inspections = new VehicleInspectionApi(Client);
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="VehicleApi"/> class.
 /// </summary>
 public VehicleApi()
     : base()
 {
     Inspections = new VehicleInspectionApi(Client);
 }