public static void Main()
Car maserati = new Car();
maserati.name = "Maserati";
maserati.customerCost = 125000;
Car lamborghini = new Car();
lamborghini.name = "Lamborghini";
lamborghini.customerCost = 200000;
pinto.customerCost = 20000;
public string name {get; set;}
public int customerCost { get; set; }
private int factoryCost = 50000;
public void GoodPrice() {
int gains = customerCost - factoryCost;
Console.WriteLine("We'll be making money on this at that price.");
Console.WriteLine("We need to sell this for a little more money.");
public string name { get; set; }
public int customerCost { get; set; }