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