Beispiel #1
0
 public bool UpdateGameRoomPotSize(int newPot, int roomId)
 {
     try
     {
         using (connectionsLinqDataContext db = new connectionsLinqDataContext())
         {
             db.UpdateGameRoomPotSize(newPot, roomId);
             return(true);
         }
     }
     catch (Exception e)
     {
         return(false);
     }
 }