Example #1
0
 public bool Update(string key, Game game)
 {
     return(InMemoryStore.Update(key, game));
 }
Example #2
0
 public bool Remove(string key)
 {
     return(InMemoryStore.Remove(key));
 }
Example #3
0
 public bool Exist(string key)
 {
     return(InMemoryStore.Exist(key));
 }
Example #4
0
 public Game GetGame(string key)
 {
     return(InMemoryStore.Get(key));
 }
Example #5
0
 public Game CreateNewGame(string key)
 {
     return(InMemoryStore.CreateNewGame(key));
 }