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