private ReturnValue <CommandDetails> GetCommand(string line) { var returnValue = _currentUtil.GetCommand(line); if (!returnValue.IsSuccess) { returnValue = _runnerUtil.GetCommand(line); } return(returnValue); }