Example #1
0
 public override void Initialize()
 {
     _consentCommand = new ConsentCommand()
     {
         ParentPlugin = this
     };
     SendMessage("Lomztein-Command Root", "AddCommand", _consentCommand);
 }
Example #2
0
        public override void Initialize()
        {
            _consentCommand = new ConsentCommand {
                ParentPlugin = this
            };
            _requestCommand = new RequestDataCommand {
                ParentPlugin = this
            };
            _deleteCommand = new DeleteDataCommand {
                ParentPlugin = this
            };

            SendMessage("Moduthulhu-Command Root", "AddCommand", _consentCommand);
            SendMessage("Moduthulhu-Command Root", "AddCommand", _requestCommand);
            SendMessage("Moduthulhu-Command Root", "AddCommand", _deleteCommand);
        }