bool Select(string entityName) {
            _selectedEntity = Entity.Find(entityName);

            WriteInfo(String.Format("{0} selected: {1}",
                        OutputSymbol,
                        _selectedEntity == null ?
                            "nothing" :
                            _selectedEntity.ToString()));

            if (_selectedEntity != null) {
                return true;
            }

            return false;
        }