コード例 #1
0
ファイル: SearchBase.cs プロジェクト: e82eric/Prompts
 public abstract ObservableCollection<ISearchablePromptItem> Execute(ISearchablePromptItemCollection promptValueCollection);
コード例 #2
0
ファイル: SearchBase.cs プロジェクト: rekha-balan/Prompts
 public abstract ObservableCollection <ISearchablePromptItem> Execute(ISearchablePromptItemCollection promptValueCollection);
コード例 #3
0
ファイル: NullSearch.cs プロジェクト: rekha-balan/Prompts
 public override ObservableCollection <ISearchablePromptItem> Execute(ISearchablePromptItemCollection promptValueCollection)
 {
     return(promptValueCollection.Enumeration);
 }
コード例 #4
0
 public override ObservableCollection <ISearchablePromptItem> Execute(ISearchablePromptItemCollection promptValueCollection)
 {
     return(promptValueCollection.LabelEquals(SearchString));
 }
コード例 #5
0
ファイル: StartsWithSearch.cs プロジェクト: e82eric/Prompts
 public override ObservableCollection<ISearchablePromptItem> Execute(ISearchablePromptItemCollection promptValueCollection)
 {
     return promptValueCollection.LabelStartsWith(SearchString);
 }
コード例 #6
0
 public ISearchService Build(ISearchablePromptItemCollection searchablePromptItemCollection)
 {
     return(new SearchService(searchablePromptItemCollection, _searchStringParser));
 }
コード例 #7
0
 public ISearchService Build(ISearchablePromptItemCollection searchablePromptItemCollection)
 {
     return new SearchService(searchablePromptItemCollection, _searchStringParser);
 }
コード例 #8
0
 public void ExecuteSetupGetChildrenCallback(ISearchablePromptItemCollection promptItemCollection)
 {
     _callback(promptItemCollection);
 }
コード例 #9
0
ファイル: SearchService.cs プロジェクト: e82eric/Prompts
 public SearchService(ISearchablePromptItemCollection searchablePromptItemCollection, ISearchStringParser<ISearch> searchStringParser)
 {
     _searchablePromptItemCollection = searchablePromptItemCollection;
     _searchStringParser = searchStringParser;
 }
コード例 #10
0
 public SearchService(ISearchablePromptItemCollection searchablePromptItemCollection, ISearchStringParser <ISearch> searchStringParser)
 {
     _searchablePromptItemCollection = searchablePromptItemCollection;
     _searchStringParser             = searchStringParser;
 }
コード例 #11
0
 public void ExecuteSetupGetChildrenCallback(ISearchablePromptItemCollection promptItemCollection)
 {
     _callback(promptItemCollection);
 }
コード例 #12
0
ファイル: NullSearch.cs プロジェクト: e82eric/Prompts
 public override ObservableCollection<ISearchablePromptItem> Execute(ISearchablePromptItemCollection promptValueCollection)
 {
     return promptValueCollection.Enumeration;
 }