GetRound() public method

public GetRound ( ) : List
return List
 //Get Id Round
 public void GetIDround()
 {
     RoundBL RoundBl = new RoundBL();
     List<Round> ListRound;
     ListRound = RoundBl.GetRound();
     if (ListRound != null)
     {
         for (int i = 0; i < ListRound.Count; i++)
         {
             if (cmb_Round.SelectedItem.ToString() == ListRound.ElementAt(i).NameRound && ListRound.ElementAt(i).IDCompetition == idCompetition)
             {
                 idRound = ListRound.ElementAt(i).IDRound;
             }
         }
     }
 }