//Use the Factory Method Pattern.
//The Runner class creates an instance of the Factory class, and creates instance of IProduct interface.
Factory factory = new Factory();

for (int i = 1; i <= 12; i++)
{
Product.IProduct product = factory.FactoryMethod(i);
Console.WriteLine("Product {0}", product.ShipFrom());
}