Example #1
0
 public bool TryRemove(int Id, out SavedSearch Removed)
 {
     return(this._savedSearches.TryRemove(Id, out Removed));
 }
Example #2
0
 public bool TryRemove(int Id, out SavedSearch Removed)
 {
     return this._savedSearches.TryRemove(Id, out Removed);
 }
Example #3
0
 public bool TryAdd(int Id, SavedSearch Search)
 {
     return(this._savedSearches.TryAdd(Id, Search));
 }
Example #4
0
 public bool TryAdd(int Id, SavedSearch Search)
 {
     return this._savedSearches.TryAdd(Id, Search);
 }