public SimpleCommandLineClient( InjectionQueueCommunicator com, CommandHandler commandsfile )
 {
     _com = com;
     _current = null;
     _parser = new CommandLineParser();
     _handler = commandsfile;
 }
 public SimpleCommandLineClient( InjectionQueueCommunicator com, string commandsfile )
     : this(com, new CommandHandler( commandsfile ))
 {
 }