Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Abstraction ab = new RefinedAbstraction();

            ab.Implementor = new ConcreteImplementorA();
            ab.Operating();

            ab.Implementor = new ConcreteImplementorB();
            ab.Operating();
        }