Esempio n. 1
0
 public bool UpdateGame(Game game)
 {
     try
     {
         gameDataAccess.UpdateGame(game);
     }
     catch (Exception ex)
     {
         ExceptionDA.StoreExceptions(ex);
         return(false);
     }
     return(true);
 }