#include "Car.h"
#include "Dealer.h"
#include <iostream>
#include <string>
using namespace std;


int main() {

    // Instantiate two dealers

    //----------------------------------------------------------------

    // Buy two cars:  a blue 4-door from one dealer, a red 2-door from the other

    // Output status of both cars

    //----------------------------------------------------------------

    // Break the blue car

    // Output status of both cars

    //----------------------------------------------------------------

    // Ask the wrong dealer to fix the blue car

    // Output status of both cars

    //----------------------------------------------------------------

    // Ask the correct dealer to fix the blue car

    // Output status of both cars

    //----------------------------------------------------------------

}

