//this is slightly different.

        public ControlCommand(IControlObservable model, MethodInfo execute, CommandContainer container)
        {
            CommandContainer = container;
            _model           = model;
            _execute         = execute;

            HookUpNotifiers();
        }
Ejemplo n.º 2
0
 public void AddControl(IControlObservable thisControl)
 {
     _controlList.Add(thisControl);
 }