I need to create a Windows Class Library that will contain the students, lectureres and classrooms. Each class should be able to save the data to a SQL Database containing tables matching ech class. Within the class the following:
a) A person class for basic person information
b) A student class inheriting from person, adding courses and marks properties
c) A lecturer class inheriting from person, adding classroom and courses.
The following information needs to be captured for each of these classes:
Person:
Firstname, Lastname, IDNumber, Telephone, e-mail, birthdate
Student:
studentNumber
courseAverage
Lecturer:
CertificationType
The list of certification types is: None, MCSE, MCSD, MCAD, MCPD.
Please help!!!