// this method is used to update the label is that which one player has set the bet on which dog and how much amount
 public void UpdateLabels()
 {
     //if the user has not set any bet then it will display no one has set the bet
     if (MyBet == null)
     {
         MyLabel.Text = String.Format("{0} hasn't placed any bets", playerName);
     }
     else
     {
         // if any player set the bet then it will call the another method to print his name and dog no also
         MyLabel.Text = MyBet.GetDescription();
     }
     objcheckBox.Text = playerName + " has " + playerCash + " Amount ";
 }