Ejemplo n.º 1
0
        private void OnSearchExecute()
        {
            _searchResultViewModel.Clear();

            if (!string.IsNullOrWhiteSpace(SearchText))
            {
                var serarchModel = new SearchModel(SearchText);
                var searchResult = _searchResultModelBuilder.Build(serarchModel);

                _searchResultViewModel.Show(searchResult);
            }
        }