BSCS-32E1-HOSPITAL-MANAGEMENT-SYSTEM / ELEC2024_HOSPITAL_BSCS_32E1

Elective 3 - Hospital Management System
0 stars 1 forks source link

Models - Appointment.cs #21

Closed WarrenNSR closed 2 months ago

WarrenNSR commented 2 months ago

Create a model that allows representation of appointment details, including patient information, doctor information, appointment date, and other relevant data. It facilitates the scheduling, tracking, and management of appointments within the application.

The Appointment model integrates with the Patient and Doctor models through relationships where an appointment is associated with a specific patient and a specific doctor. This is managed via the PatientId and DoctorId properties, which link to the Id properties in the Patient and Doctor models, respectively.