//--------------------------------------------------------------------------------------------------------- // The code below represents the Method(s) for the class: ListOfClubs // This is the primary method that simply adds a Club to the ClubList of Clubs that the ListOfClubs contains public void AddClubToList(Club club) { ClubList.Add(club); }