Ejemplo n.º 1
0
        public static void Main()
        {
            Excuetable ex = new Excuetable();
            Operation1 op = new Operation1();

            ex.ExcuteOperation(op);
        }
Ejemplo n.º 2
0
 public void ExcuteOperation(Operation1 operation)
 {
     op = operation;
     op.Excute();
 }