//Change Background Music to the current table
 private void ChangeBGMusic()
 {
     BGMusicPlayer.Stop();
     if (CurrentTable != null)
     {
         if (CurrentTable.BGMusicExists)
         {
             BGMusicPlayer.Open(CurrentTable.BGMusic);
             BGMusicPlayer.Play();
         }
     }
 }
 private void StopBGMusic()
 {
     BGMusicPlayer.Stop();
 }