//Use the Abstract Factory Pattern.
//The Runner class creates an instance of the Client class (object), which invokes methods in the different types of factory classes (objects).
Client client;
GucciFactory gucci = new GucciFactory();
client = new Client(gucci);
client.ClientMain();
Console.WriteLine();
PoochyFactory poochy = new PoochyFactory();
client = new Client(poochy);
client.ClientMain();