예제 #1
0
 public void ValidateCommand(ConsultTypeOfCommand name)
 {
     if (_lstCommands[name.ToString()] == null)
     {
         _lstCommands.Add(DataSource.Commands[name.ToString()]);
     }
 }
예제 #2
0
 public ConsultCommand GetCommand(ConsultTypeOfCommand name)
 {
     return(DataSource.Commands[name.ToString()]);
 }
예제 #3
0
 public ConsultCommand GetCommand(ConsultTypeOfCommand name)
 {
     return DataSource.Commands[name.ToString()];
 }
예제 #4
0
 public void ValidateCommand(ConsultTypeOfCommand name)
 {
     if (_lstCommands[name.ToString()] == null)
         _lstCommands.Add(DataSource.Commands[name.ToString()]);
 }
예제 #5
0
 public ConsultCommand(ConsultTypeOfCommand name, byte cmd)
 {
     _name    = name;
     _command = cmd;
 }
예제 #6
0
 public ConsultCommand(ConsultTypeOfCommand name, byte cmd)
 {
     _name = name;
     _command = cmd;
 }