Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Factory factory = new Factory();
            IShape  circle  = factory.getShape("circle");

            circle.draw();

            IShape square = factory.getShape("square");

            square.draw();

            Console.ReadLine();
        }