C# Class VSSonarExtensionUi.Model.Helpers.SearchModel

issue search model, search data model
Mostra file Open project: TrimbleSolutionsCorporation/VSSonarQubeExtension

Private Properties

Property Type Description
LoadSavedSearchs void
SyncCollections void
SyncSaveSearchToFile void

Public Methods

Method Description
DeleteSearch ( string name ) : void

Deletes the search.

GetSearchByName ( string name ) : Search

Gets the name of the search by.

SaveSearch ( Search data ) : void

Saves the search to file.

SearchModel ( ObservableCollection dataFromModel ) : System

Initializes a new instance of the SearchModel class.

Private Methods

Method Description
LoadSavedSearchs ( ) : void

Loads the saved search.

SyncCollections ( ) : void

Synchronizes the collections.

SyncSaveSearchToFile ( ) : void

Synchronizes the save search to file.

Method Details

DeleteSearch() public method

Deletes the search.
public DeleteSearch ( string name ) : void
name string The name.
return void

GetSearchByName() public method

Gets the name of the search by.
public GetSearchByName ( string name ) : Search
name string The name.
return VSSonarExtensionUi.ViewModel.Helpers.Search

SaveSearch() public method

Saves the search to file.
public SaveSearch ( Search data ) : void
data VSSonarExtensionUi.ViewModel.Helpers.Search The data.
return void

SearchModel() public method

Initializes a new instance of the SearchModel class.
public SearchModel ( ObservableCollection dataFromModel ) : System
dataFromModel ObservableCollection The data from model.
return System