예제 #1
0
 /*
  * Pre:  The student information must have been previously entered
  *       into the database, meaning that there is a unique id
  * Post: The student's information is deleted
  * @returns true if the information is successfully deleted and false otherwise
  */
 public bool deleteDatabaseInformation()
 {
     return(DbInterfaceStudent.DeleteStudent(id));
 }