public static void Main()
Car maserati = new Car();
maserati.name = "Maserati";
maserati.customerCost = 75000;
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");