public void AddToActivities(string activiteitNaam, int aantalStudenten, int aantalBegeleiders)
 {
     try
     {
         activity_db.Db_Add_To_Activities(activiteitNaam, aantalStudenten, aantalBegeleiders);
     }
     catch (Exception)
     {
         throw new Exception("Someren couldn't add a new item to the activities");
     }
 }