https://github.com/hacker1649/clinic-management-system-using-asp.net
The Clinic Management System developed with ASP.NET provides seamless integration of patient records, appointments, and billing, ensuring efficient workflow and improved patient care. Its user-friendly interface and robust features empower healthcare professionals to streamline administrative tasks and focus on delivering optimal medical services.
https://github.com/hacker1649/clinic-management-system-using-asp.net
asp-net bootstrap csharp css html javascript sql
Last synced: 4 months ago
JSON representation
The Clinic Management System developed with ASP.NET provides seamless integration of patient records, appointments, and billing, ensuring efficient workflow and improved patient care. Its user-friendly interface and robust features empower healthcare professionals to streamline administrative tasks and focus on delivering optimal medical services.
- Host: GitHub
- URL: https://github.com/hacker1649/clinic-management-system-using-asp.net
- Owner: hacker1649
- Created: 2023-12-13T10:51:20.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-13T11:18:21.000Z (over 1 year ago)
- Last Synced: 2024-12-31T15:50:58.736Z (6 months ago)
- Topics: asp-net, bootstrap, csharp, css, html, javascript, sql
- Language: C#
- Homepage:
- Size: 18.1 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# π¨ββοΈ Clinic Management System using ASP.NET
The Clinic Management System developed using ASP.NET is a comprehensive and user-friendly solution that streamlines the administrative and operational aspects of a medical clinic. Leveraging the power of ASP.NET, this system ensures efficient data management, seamless communication, and enhanced patient care. With features such as appointment scheduling, patient registration, and electronic health records, the system provides a centralized platform for healthcare professionals to access and update critical information in real-time. The robust security measures implemented in ASP.NET ensure the confidentiality and integrity of patient data. Moreover, the intuitive user interface facilitates easy navigation for both healthcare providers and administrative staff, optimizing workflow and minimizing errors. The Clinic Management System developed with ASP.NET stands as a testament to modern, technology-driven healthcare management, fostering improved patient outcomes and organizational efficiency.
## Technologies Used:
For Frontend: HTML, CSS, BootStrap, JavaScript
For Backend: C#, ASP.NET
For Database: SQL
### Pre-requisites:
* [Microsoft Visual Studio](https://visualstudio.microsoft.com/vs/community/)
* [Microsoft SQL Server Express](https://www.microsoft.com/en-us/sql-server/sql-server-editions-express)
* [Microsoft SQL Server Management Studio (SSMS)](https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-2017)## Interface
Some screenshots of the pages.### Signup Page
### Take Appointment
![]()
### Current Appointments
![]()
### Search Staff
![]()
## Functionalities Implemented:
Our project revolves around three major classes of users. Characteristics of each class are listed below### 1. Patient:
* **1. Patient Home** β Patient can view his profile.
* **2. Current Appointment** β Patient can view if he has some pending or approved appointment with a doctor.
* **3. Bills History** β Patient can view the bill history of appointments that have been completed.
* **4. Treatment History** β Patient can view the treatment history of appointments which have been completed.
* **5. Take Appointment** β Patient can view all the departments, and then can select one dept. Then the doctors of that dept are shown. Then patient selects one doctor and the doctorβs profile is then shown along with a βtake appointmentβ button. When the button is clicked, the free slots of that particular doctor are shown. Patient selects a free slot of his choice and then sends request for that free slot to the doctor. The doctor will then approve/reject it.
* **6. Notifications** β In this tab, a notification is shown whenever the doctor accepts/rejects the requested appointment.
* **7. Feedback** β After a appointment is completed, patient can give feedback about that appointment by rating it from 1 to 5.
* **8.** A patient can request for only one appointment at a time and will not be allowed to take more than one appointments until the last appointment has been completed.### 2. Doctor:
* **1. DoctorProfile** β Doctor can see his own profile.
* **2. PendingAppointments** β Doctor can see all the pending appointments against his doctor ID.
* **3. TodaysAppointmemts** β The appointments for current day will be shown.The doctor then can select/reject any appointment of that day.
* **4. HistoryUpdate** β He can update prescription,disease and progress of patient.
* **5. GenerateBill** β He will then generate the bill.
* **6. PatientHistory** β Doctor will be able to see the treatment history of all his treated patients.### 3. Administrator:
* **1. Admin Home** β Admin can view Clinic stats which includes weekly appointments, income of the Clinic. No of registered patients and doctors along with the list of departments.
* **2. View Doctors** β Admin can view the list of doctors currently registered along with their departments and other information. Complete profile will be shown when clicked.
* **3. View Patients** β Admin can view the list of patients currently registered along with their phone numbers and ids. Complete profile will be shown when clicked.
* **4. View Other Staff** β Admin can view other staff members along with their designations.
* **5. Search Box** β Admin can search for a specific employ within the company by name.
* **6. Add/Remove** β Admin can Add/remove doctors patients and other staff members form the clinic.## How to Run
1- Install the following:
* [Microsoft Visual Studio](https://visualstudio.microsoft.com/vs/community/)
* [Microsoft SQL Server Express](https://www.microsoft.com/en-us/sql-server/sql-server-editions-express)
* [Microsoft SQL Server Management Studio (SSMS)](https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-2017)2- Open SQL Server Management Studio and in the "Connect to Database Engine" window type the following:
```
Servername: .\SQLEXRPESS
Authentication: Windows Authentication
```
![]()
3- Now open Schema.sql file in Database Files folder and execute it all. This will create the database and the tables. Afterwards execute the following sql files: Admin.sql, Doctor.sql, Patient.sql, Signup.sql.
4- Now execute the Insertions.sql file in Database Files folder. This will populate the database with some test entries. Moreover, some login emails and passwords of doctors, patients and admin are placed in the Insertions.sql file. You can use them to test the functionalities of the system.
5- Everything is setup now! You can run the Visual Studio Project by opening Clinic Management System.sln and then select the SignUp.aspx page and click run button named IIS Express.
![]()