Ejemplo n.º 1
0
 public abstract ObservableCollection<ISearchablePromptItem> Execute(ISearchablePromptItemCollection promptValueCollection);
Ejemplo n.º 2
0
 public abstract ObservableCollection <ISearchablePromptItem> Execute(ISearchablePromptItemCollection promptValueCollection);
Ejemplo n.º 3
0
 public override ObservableCollection <ISearchablePromptItem> Execute(ISearchablePromptItemCollection promptValueCollection)
 {
     return(promptValueCollection.Enumeration);
 }
Ejemplo n.º 4
0
 public override ObservableCollection <ISearchablePromptItem> Execute(ISearchablePromptItemCollection promptValueCollection)
 {
     return(promptValueCollection.LabelEquals(SearchString));
 }
Ejemplo n.º 5
0
 public override ObservableCollection<ISearchablePromptItem> Execute(ISearchablePromptItemCollection promptValueCollection)
 {
     return promptValueCollection.LabelStartsWith(SearchString);
 }
Ejemplo n.º 6
0
 public ISearchService Build(ISearchablePromptItemCollection searchablePromptItemCollection)
 {
     return(new SearchService(searchablePromptItemCollection, _searchStringParser));
 }
Ejemplo n.º 7
0
 public ISearchService Build(ISearchablePromptItemCollection searchablePromptItemCollection)
 {
     return new SearchService(searchablePromptItemCollection, _searchStringParser);
 }
Ejemplo n.º 8
0
 public void ExecuteSetupGetChildrenCallback(ISearchablePromptItemCollection promptItemCollection)
 {
     _callback(promptItemCollection);
 }
Ejemplo n.º 9
0
 public SearchService(ISearchablePromptItemCollection searchablePromptItemCollection, ISearchStringParser<ISearch> searchStringParser)
 {
     _searchablePromptItemCollection = searchablePromptItemCollection;
     _searchStringParser = searchStringParser;
 }
Ejemplo n.º 10
0
 public SearchService(ISearchablePromptItemCollection searchablePromptItemCollection, ISearchStringParser <ISearch> searchStringParser)
 {
     _searchablePromptItemCollection = searchablePromptItemCollection;
     _searchStringParser             = searchStringParser;
 }
Ejemplo n.º 11
0
 public void ExecuteSetupGetChildrenCallback(ISearchablePromptItemCollection promptItemCollection)
 {
     _callback(promptItemCollection);
 }
Ejemplo n.º 12
0
 public override ObservableCollection<ISearchablePromptItem> Execute(ISearchablePromptItemCollection promptValueCollection)
 {
     return promptValueCollection.Enumeration;
 }