Example #1
0
 public Cmd(iCmdable rcvr)
 {
     Receiver = rcvr;
 }
Example #2
0
        /*
         *   cmcb  2019/10/28
         *
         *   Concrete class for the activate command
         *
         *
         */

        public CmdActivate(iCmdable rcvr) : base(rcvr)
        {
        }
Example #3
0
        /*
         *   cmcb  2019/10/28
         *
         *   Concrete class to set command parameters
         *
         *
         */

        public CmdSetParam(iCmdable rcvr) : base(rcvr)
        {
        }