/// <summary>
 /// deletes a trainee and confime that it can be deleted
 /// </summary>
 /// <param name="t">trainee to delete</param>
 public void DeleteTrainee(Trainee t)
 {
     try
     {
         dal.DeleteTrainee(t);
     }
     catch (Exception e)
     { throw e; }
 }