C# Class TVSorter.Controller.ShowSearchController

Controller for handle show searches.
Inheritance: ControllerBase
Mostrar archivo Open project: a-jackson/tvsorter Class Usage Examples

Public Methods

Method Description
Initialise ( IView view ) : void

Initialises the controller.

Search ( string name ) : void

Searches for the specified name.

Select ( int index ) : void

Selects the specified index as the chosen result.

Method Details

Initialise() public method

Initialises the controller.
public Initialise ( IView view ) : void
view IView /// The view the controller is for. ///
return void

Search() public method

Searches for the specified name.
public Search ( string name ) : void
name string /// The name to seach for. ///
return void

Select() public method

Selects the specified index as the chosen result.
public Select ( int index ) : void
index int /// The index to select. ///
return void