public static void Main()
AllAccounts.Customer.Account custAcc1 = new AllAccounts.Customer.Account();
AllAccounts.Supplier.Account suppAcc1 = new AllAccounts.Supplier.Account();
suppAcc1.createName("Supplies R Us");
Console.WriteLine("Created a new CUSTOMER Account");
private static string businessName;
Console.WriteLine("Created a new SUPPLIER Account");
public void createName(string inName)
Console.WriteLine("The business' name is " + businessName);