Exemplo n.º 1
0
 public void ClassIDs()
 {
     //Call the getClassIDs method from the BookingsClass and save into a list.
     List <string> IDs = Bookings.getClassIDs();
     {
         foreach (string id in IDs)
         {
             //Add each ID into cbClassID.
             cbClassID.Items.Add(id);
         }
     }
 }