Exemplo n.º 1
0
 public ExitCommand()
 {
     Description = "Exit command invoked";
     _name = "Exit";
     _type = ECommandTypes.Exit;
     CommandLogger = new GenericCommandLogger();
 }
Exemplo n.º 2
0
 public HelpCommand()
 {
     Description   = "Help command invoked";
     _name         = "Help";
     _type         = ECommandTypes.Help;
     CommandLogger = new GenericCommandLogger();
 }
Exemplo n.º 3
0
 public ExitCommand()
 {
     Description   = "Exit command invoked";
     _name         = "Exit";
     _type         = ECommandTypes.Exit;
     CommandLogger = new GenericCommandLogger();
 }
Exemplo n.º 4
0
 public PingCommand()
 {
     Description   = "Pinging command invoked";
     _name         = "Ping";
     _type         = ECommandTypes.Ping;
     CommandLogger = new GenericCommandLogger();
 }
Exemplo n.º 5
0
 public PingCommand()
 {
     Description = "Pinging command invoked";
     _name = "Ping";
     _type = ECommandTypes.Ping;
     CommandLogger = new GenericCommandLogger();
 }
Exemplo n.º 6
0
 public HelpCommand()
 {
     Description = "Help command invoked";
     _name = "Help";
     _type = ECommandTypes.Help;
     CommandLogger = new GenericCommandLogger();
 }