├── .gitignore ├── CMC ├── .gitignore ├── WebContent │ ├── META-INF │ │ └── MANIFEST.MF │ ├── WEB-INF │ │ ├── lib │ │ │ └── mysql-connector-java-5.1.41-bin.jar │ │ └── web.xml │ ├── admin.jsp │ ├── bookAppointment.jsp │ ├── css │ │ ├── admin.css │ │ ├── appointment.css │ │ ├── dashboard.css │ │ ├── doctor.css │ │ ├── lab.css │ │ ├── login.css │ │ ├── patient.css │ │ └── signup.css │ ├── doctor.jsp │ ├── doctorDetailedAppointment.jsp │ ├── editAdminProfile.jsp │ ├── editDoctorProfile.jsp │ ├── editLabPersonProfile.jsp │ ├── editProfile.jsp │ ├── editReceptionistProfile.jsp │ ├── labPerson.jsp │ ├── login.jsp │ ├── media │ │ ├── Location.png │ │ ├── admin.png │ │ ├── appointment.png │ │ ├── bloodGroup.png │ │ ├── bmi.png │ │ ├── degree.png │ │ ├── doctor.png │ │ ├── edit.png │ │ ├── gender.png │ │ ├── labPerson.png │ │ ├── patient.png │ │ ├── prescription.png │ │ ├── receptionist.png │ │ ├── specialization.png │ │ └── user.png │ ├── patient.jsp │ ├── patientDetailedAppointment.jsp │ ├── receptionist.jsp │ ├── receptionistDetailedAppointment.jsp │ └── signup.jsp └── src │ ├── authentication │ ├── Login.java │ ├── Logout.java │ └── Signup.java │ ├── database │ ├── DatabaseConnector.java │ └── DatabaseHelper.java │ ├── modal │ ├── Appointment.java │ ├── AppointmentItemType.java │ ├── AppointmentItems.java │ ├── Person.java │ └── PersonType.java │ ├── patient │ ├── modal │ │ ├── DashBoard.java │ │ └── Patient.java │ └── servlet │ │ ├── BookAppointment.java │ │ ├── CloseAppointment.java │ │ ├── EditProfile.java │ │ ├── NewAppointmentItem.java │ │ ├── OpenBookAppointment.java │ │ ├── PatientAppointmentDetails.java │ │ ├── PatientServlet.java │ │ └── UpdatePatientProfile.java │ ├── prescription │ ├── Lab.java │ └── Prescription.java │ ├── staff │ ├── modal │ │ ├── Doctor.java │ │ └── Staff.java │ └── servlet │ │ ├── AdminServlet.java │ │ ├── AllocateDoctor.java │ │ ├── DoctorAppointmentDetails.java │ │ ├── DoctorServlet.java │ │ ├── EditAdminProfile.java │ │ ├── EditDoctorProfile.java │ │ ├── EditLabPersonProfile.java │ │ ├── EditReceptionistProfile.java │ │ ├── LabPersonServlet.java │ │ ├── LabReportOpen.java │ │ ├── ReceptionistAppointmentDetails.java │ │ ├── ReceptionistServlet.java │ │ ├── SubmitLabReport.java │ │ ├── UpdateAdminProfile.java │ │ ├── UpdateDoctorProfile.java │ │ ├── UpdateLabPersonProfile.java │ │ └── UpdateReceptionistProfile.java │ └── utils │ ├── DashUtils.java │ └── DateUtils.java ├── Database ├── cmc_appointment.sql ├── cmc_appointmentItems.sql ├── cmc_appointmentItemsType.sql ├── cmc_database.sql ├── cmc_doctor.sql ├── cmc_lab.sql ├── cmc_patient.sql ├── cmc_person.sql ├── cmc_personType.sql └── cmc_prescription.sql ├── LICENSE ├── README.md ├── Screenshots ├── AdminDashboard-AppointmentList.png ├── AdminDashboard-DoctorList.png ├── AdminDashboard-PatientList.png ├── AdminDashboard-StaffList.png ├── AdminDashboard.png ├── DoctorDashboard.png ├── LabPersonDashboard-ClosedLabReports.png ├── LabPersonDashboard-OpenLabReports.png ├── Login.png ├── PatientDashboard-BookAppointment.png ├── PatientDashboard-ViewAppointmentDetails.png ├── PatientDashboard.png ├── ReceptionistDashboard-AllocateDoctor.png ├── ReceptionistDashboard.png └── Signup.png └── constituent └── SRS_Group_38.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/.gitignore -------------------------------------------------------------------------------- /CMC/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /bin/ 3 | -------------------------------------------------------------------------------- /CMC/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /CMC/WebContent/WEB-INF/lib/mysql-connector-java-5.1.41-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/WEB-INF/lib/mysql-connector-java-5.1.41-bin.jar -------------------------------------------------------------------------------- /CMC/WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /CMC/WebContent/admin.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/admin.jsp -------------------------------------------------------------------------------- /CMC/WebContent/bookAppointment.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/bookAppointment.jsp -------------------------------------------------------------------------------- /CMC/WebContent/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/css/admin.css -------------------------------------------------------------------------------- /CMC/WebContent/css/appointment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/css/appointment.css -------------------------------------------------------------------------------- /CMC/WebContent/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/css/dashboard.css -------------------------------------------------------------------------------- /CMC/WebContent/css/doctor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/css/doctor.css -------------------------------------------------------------------------------- /CMC/WebContent/css/lab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/css/lab.css -------------------------------------------------------------------------------- /CMC/WebContent/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/css/login.css -------------------------------------------------------------------------------- /CMC/WebContent/css/patient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/css/patient.css -------------------------------------------------------------------------------- /CMC/WebContent/css/signup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/css/signup.css -------------------------------------------------------------------------------- /CMC/WebContent/doctor.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/doctor.jsp -------------------------------------------------------------------------------- /CMC/WebContent/doctorDetailedAppointment.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/doctorDetailedAppointment.jsp -------------------------------------------------------------------------------- /CMC/WebContent/editAdminProfile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/editAdminProfile.jsp -------------------------------------------------------------------------------- /CMC/WebContent/editDoctorProfile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/editDoctorProfile.jsp -------------------------------------------------------------------------------- /CMC/WebContent/editLabPersonProfile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/editLabPersonProfile.jsp -------------------------------------------------------------------------------- /CMC/WebContent/editProfile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/editProfile.jsp -------------------------------------------------------------------------------- /CMC/WebContent/editReceptionistProfile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/editReceptionistProfile.jsp -------------------------------------------------------------------------------- /CMC/WebContent/labPerson.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/labPerson.jsp -------------------------------------------------------------------------------- /CMC/WebContent/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/login.jsp -------------------------------------------------------------------------------- /CMC/WebContent/media/Location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/Location.png -------------------------------------------------------------------------------- /CMC/WebContent/media/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/admin.png -------------------------------------------------------------------------------- /CMC/WebContent/media/appointment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/appointment.png -------------------------------------------------------------------------------- /CMC/WebContent/media/bloodGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/bloodGroup.png -------------------------------------------------------------------------------- /CMC/WebContent/media/bmi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/bmi.png -------------------------------------------------------------------------------- /CMC/WebContent/media/degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/degree.png -------------------------------------------------------------------------------- /CMC/WebContent/media/doctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/doctor.png -------------------------------------------------------------------------------- /CMC/WebContent/media/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/edit.png -------------------------------------------------------------------------------- /CMC/WebContent/media/gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/gender.png -------------------------------------------------------------------------------- /CMC/WebContent/media/labPerson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/labPerson.png -------------------------------------------------------------------------------- /CMC/WebContent/media/patient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/patient.png -------------------------------------------------------------------------------- /CMC/WebContent/media/prescription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/prescription.png -------------------------------------------------------------------------------- /CMC/WebContent/media/receptionist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/receptionist.png -------------------------------------------------------------------------------- /CMC/WebContent/media/specialization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/specialization.png -------------------------------------------------------------------------------- /CMC/WebContent/media/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/media/user.png -------------------------------------------------------------------------------- /CMC/WebContent/patient.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/patient.jsp -------------------------------------------------------------------------------- /CMC/WebContent/patientDetailedAppointment.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/patientDetailedAppointment.jsp -------------------------------------------------------------------------------- /CMC/WebContent/receptionist.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/receptionist.jsp -------------------------------------------------------------------------------- /CMC/WebContent/receptionistDetailedAppointment.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/receptionistDetailedAppointment.jsp -------------------------------------------------------------------------------- /CMC/WebContent/signup.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/WebContent/signup.jsp -------------------------------------------------------------------------------- /CMC/src/authentication/Login.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/authentication/Login.java -------------------------------------------------------------------------------- /CMC/src/authentication/Logout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/authentication/Logout.java -------------------------------------------------------------------------------- /CMC/src/authentication/Signup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/authentication/Signup.java -------------------------------------------------------------------------------- /CMC/src/database/DatabaseConnector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/database/DatabaseConnector.java -------------------------------------------------------------------------------- /CMC/src/database/DatabaseHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/database/DatabaseHelper.java -------------------------------------------------------------------------------- /CMC/src/modal/Appointment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/modal/Appointment.java -------------------------------------------------------------------------------- /CMC/src/modal/AppointmentItemType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/modal/AppointmentItemType.java -------------------------------------------------------------------------------- /CMC/src/modal/AppointmentItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/modal/AppointmentItems.java -------------------------------------------------------------------------------- /CMC/src/modal/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/modal/Person.java -------------------------------------------------------------------------------- /CMC/src/modal/PersonType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/modal/PersonType.java -------------------------------------------------------------------------------- /CMC/src/patient/modal/DashBoard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/patient/modal/DashBoard.java -------------------------------------------------------------------------------- /CMC/src/patient/modal/Patient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/patient/modal/Patient.java -------------------------------------------------------------------------------- /CMC/src/patient/servlet/BookAppointment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/patient/servlet/BookAppointment.java -------------------------------------------------------------------------------- /CMC/src/patient/servlet/CloseAppointment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/patient/servlet/CloseAppointment.java -------------------------------------------------------------------------------- /CMC/src/patient/servlet/EditProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/patient/servlet/EditProfile.java -------------------------------------------------------------------------------- /CMC/src/patient/servlet/NewAppointmentItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/patient/servlet/NewAppointmentItem.java -------------------------------------------------------------------------------- /CMC/src/patient/servlet/OpenBookAppointment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/patient/servlet/OpenBookAppointment.java -------------------------------------------------------------------------------- /CMC/src/patient/servlet/PatientAppointmentDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/patient/servlet/PatientAppointmentDetails.java -------------------------------------------------------------------------------- /CMC/src/patient/servlet/PatientServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/patient/servlet/PatientServlet.java -------------------------------------------------------------------------------- /CMC/src/patient/servlet/UpdatePatientProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/patient/servlet/UpdatePatientProfile.java -------------------------------------------------------------------------------- /CMC/src/prescription/Lab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/prescription/Lab.java -------------------------------------------------------------------------------- /CMC/src/prescription/Prescription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/prescription/Prescription.java -------------------------------------------------------------------------------- /CMC/src/staff/modal/Doctor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/modal/Doctor.java -------------------------------------------------------------------------------- /CMC/src/staff/modal/Staff.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/modal/Staff.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/AdminServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/AdminServlet.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/AllocateDoctor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/AllocateDoctor.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/DoctorAppointmentDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/DoctorAppointmentDetails.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/DoctorServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/DoctorServlet.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/EditAdminProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/EditAdminProfile.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/EditDoctorProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/EditDoctorProfile.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/EditLabPersonProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/EditLabPersonProfile.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/EditReceptionistProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/EditReceptionistProfile.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/LabPersonServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/LabPersonServlet.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/LabReportOpen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/LabReportOpen.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/ReceptionistAppointmentDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/ReceptionistAppointmentDetails.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/ReceptionistServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/ReceptionistServlet.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/SubmitLabReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/SubmitLabReport.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/UpdateAdminProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/UpdateAdminProfile.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/UpdateDoctorProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/UpdateDoctorProfile.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/UpdateLabPersonProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/UpdateLabPersonProfile.java -------------------------------------------------------------------------------- /CMC/src/staff/servlet/UpdateReceptionistProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/staff/servlet/UpdateReceptionistProfile.java -------------------------------------------------------------------------------- /CMC/src/utils/DashUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/utils/DashUtils.java -------------------------------------------------------------------------------- /CMC/src/utils/DateUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/CMC/src/utils/DateUtils.java -------------------------------------------------------------------------------- /Database/cmc_appointment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Database/cmc_appointment.sql -------------------------------------------------------------------------------- /Database/cmc_appointmentItems.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Database/cmc_appointmentItems.sql -------------------------------------------------------------------------------- /Database/cmc_appointmentItemsType.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Database/cmc_appointmentItemsType.sql -------------------------------------------------------------------------------- /Database/cmc_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Database/cmc_database.sql -------------------------------------------------------------------------------- /Database/cmc_doctor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Database/cmc_doctor.sql -------------------------------------------------------------------------------- /Database/cmc_lab.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Database/cmc_lab.sql -------------------------------------------------------------------------------- /Database/cmc_patient.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Database/cmc_patient.sql -------------------------------------------------------------------------------- /Database/cmc_person.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Database/cmc_person.sql -------------------------------------------------------------------------------- /Database/cmc_personType.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Database/cmc_personType.sql -------------------------------------------------------------------------------- /Database/cmc_prescription.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Database/cmc_prescription.sql -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/AdminDashboard-AppointmentList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/AdminDashboard-AppointmentList.png -------------------------------------------------------------------------------- /Screenshots/AdminDashboard-DoctorList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/AdminDashboard-DoctorList.png -------------------------------------------------------------------------------- /Screenshots/AdminDashboard-PatientList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/AdminDashboard-PatientList.png -------------------------------------------------------------------------------- /Screenshots/AdminDashboard-StaffList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/AdminDashboard-StaffList.png -------------------------------------------------------------------------------- /Screenshots/AdminDashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/AdminDashboard.png -------------------------------------------------------------------------------- /Screenshots/DoctorDashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/DoctorDashboard.png -------------------------------------------------------------------------------- /Screenshots/LabPersonDashboard-ClosedLabReports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/LabPersonDashboard-ClosedLabReports.png -------------------------------------------------------------------------------- /Screenshots/LabPersonDashboard-OpenLabReports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/LabPersonDashboard-OpenLabReports.png -------------------------------------------------------------------------------- /Screenshots/Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/Login.png -------------------------------------------------------------------------------- /Screenshots/PatientDashboard-BookAppointment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/PatientDashboard-BookAppointment.png -------------------------------------------------------------------------------- /Screenshots/PatientDashboard-ViewAppointmentDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/PatientDashboard-ViewAppointmentDetails.png -------------------------------------------------------------------------------- /Screenshots/PatientDashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/PatientDashboard.png -------------------------------------------------------------------------------- /Screenshots/ReceptionistDashboard-AllocateDoctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/ReceptionistDashboard-AllocateDoctor.png -------------------------------------------------------------------------------- /Screenshots/ReceptionistDashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/ReceptionistDashboard.png -------------------------------------------------------------------------------- /Screenshots/Signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/Screenshots/Signup.png -------------------------------------------------------------------------------- /constituent/SRS_Group_38.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jainkuniya/central-medic-center/HEAD/constituent/SRS_Group_38.pdf --------------------------------------------------------------------------------