SlideShare a Scribd company logo
1 of 31
Download to read offline
1
Hospital Management System
By
Rishit Gajjar (10BIT031)
Mehul Ranavasiya (10BIT047)
DEPARTMENT OF COMPUTER SCIENCE AND ENGINERING
Ahmedabad 382481
November 2013
2
Hospital Management System
Minor Project
Submitted in partial fulfillment of the requirements
For the degree of
Bachelors of Technology in Information Technology
By
Rishit Gajjar (10BIT031)
Mehul Ranavasiya (10BIT047)
Guided By
Mr. Sapan Mankad
[DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING]
DEPARTMENT OF COMPUTER SCICEN AND ENGINEERING
Ahmedabad 382481
November 2013
3
CERTIFICATE
This is to certify that the Minor Project entitled Hospital Management System
submitted by Rishit Gajjar(10bit031),Mehul Ranavasiya (10bit047), towards the
partial fulfillment of the requirements for the degree of Bachelors of Technology
in Information Technology of Nirma University of Science and Technology,
Ahmedabad is the record of work carried out by them under my supervision and
guidance. In my opinion, the submitted work has reached a level required for
being accepted for examination. The results embodied in this minor project, to
the best of my knowledge, havenโ€™t been submitted to any other university or
institution for award of any degree or diploma.
Prof Sapan Mankad Dr. Sanjay Garg
Guide, Professor and Head,
Assistant Professor CSE Department,
Department of Computer Engineering, Institute of Technology,
Institute of Technology, Nirma University,
Nirma University, Ahmedabad
Ahmedabad
4
ACKNOWLEDGEMENT
I would like thank to all those who are involved in this endeavor for their kind
cooperation for its successful completion. At the outset, I wish to express my
sincere gratitude to all those people who have helped me to complete this project
in an efficient manner.
I offer my special thanks to my Project guide Prof. SAPAN MANKAD, Assistant
Professor, Department of Computer Science & Engineering, Institute of
Technology, Nirma University, Ahmedabad without whose help and support
throughout this project would not have been this success.
I am thankful to Dr. K KOTECHA, Director and Institute of Technology,
Ahmedabad for his kind support in all respect during my study. I would like to
thank Dr. SANJAY GARG, Head, Department of Computer Engineering, Institute
of Technology, Nirma University, who gave opportunity to do this project at an
extreme organization. Most of all and more than ever, I would like to thanks my
family members for their warmness, support, encouragement, kindness and
patience. I am really thankful to all my friends who always advised and
motivated me throughout the course.
RISHIT GAJJAR
Roll No.10BIT031
MEHUL RANAVASIYA
Roll No.10BIT047
5
ABSTRACT
Many Hospitals currently use a manual system for the management and
maintenance of critical information. The current system requires numerous paper
forms, with data stores spread throughout the hospital management
infrastructure. Often information (on forms) is incomplete, or does not follow
management standards. Forms are often lost in transit between departments
requiring a comprehensive auditing process to ensure that no vital information is
lost. Multiple copies of the same information exist in the hospital and may lead to
inconsistencies in data in various data stores.
A significant part of the operation of any hospital involves the acquisition,
management and timely retrieval of great volumes of information. This
information typically involves; patient personal information and medical history,
staff information, room and ward scheduling, staff scheduling, operating theater
scheduling and various facilities waiting lists. All of this information must be
managed in an efficient and cost wise fashion so that an institution's resources
may be effectively utilized HMS will automate the management of the hospital
making it more efficient and error free. It aims at standardizing data,
consolidating data ensuring data integrity and reducing inconsistencies.
6
CONTENTS
Certificate 3
Acknowledgement 4
Abstract 5
Contents 6
List of figures 7
List of tables 8
Chapter 1 Introduction 9
1.1 General 9
Chapter 2 Design 10
2.1 Overview 10
2.2 UML Diagram 10
2.2.1 Introduction 11
2.2.2 Use case Diagram 12
2.2.3 Sequence Diagram 13
2.2.4 Activity Diagram 14
2.3 Project Module
2.3.1 List of Modules 15
2.3.2 Module Description 16
2.3.3 Screen Shots 18
Chapter 3 Database 25
3.1 Data Dictionary 25
Chapter 4 Conclusion 29
4.1 Conclusions 29
4.2 Future Enhancements 30
Bibliography 31
7
LIST OF FIGURES
Figure No. Caption Page No.
Figure 2.1 Use case Diagram 12
Figure 2.2 Sequence Diagram 13
Figure 2.3 Activity Diagram 14
Figure 2.4 Home Page 18
Figure 2.5 Admin Page 19
Figure 2.6 Registration page 20
Figure 2.7 Operation Theater 21
Figure 2.8 Medical Test 22
Figure 2.9 Pharmacy Page 23
Figure 2.10 Discharge Page 24
8
LIST OF TABLES
Table No. Caption Page No.
Table 3.1 Doctor Registration 25
Table 3.2 Employee
Registration
25
Table 3.3 Inpatient
Registration
26
Table 3.4 Out Patient
Registration
26
Table 3.5 Patient Information 27
Table 3.6 Surgery Information 27
Table 3.7 Blood test 27
Table 3.8 Urine test 28
Table 3.9 Operation 28
Table 3.10 Pharmacy
Information
28
Table 3.11 Discharge Summary 28
9
INTRODUCTION
1.1 GENERAL
Documenting the assembly, maintenance, use, and troubleshooting of a
system as complex as a voting system is a difficult task. A single system
might combine proprietary hardware, custom operating systems and
software, commodity personal computers, and pen and paper. Describing
these highly varied components is one function of voting system
documentation .But it is not only voting system technology that is
heterogeneous; so are voting systems users, and the environments in
which the systems are used. Election officials, poll workers, and voters
often need guidance from documents in order to administer or use a
voting system. In addition, voting system certificationโ€”the process by
which a system is approved for use in stateโ€” demands evidence that a
voting system complies with one or more sets of standards or guidelines.
Documentation provides the details that certification bodies need to
evaluate the System. Taken as a whole, voting system documentation
must explain the system in several ways to meet the needs of these
multiple audiences.
As the modern organizations are automated and computers are working as
per the instructions, it becomes essential for the coordination of human
beings, commodity and computers in a modern organization.
Many big cities where the life is busy needs the transaction of the goods
within few minutes of time. So, this online information recorded by the
distributor helps him to complete this task within the time.
The administrators and all the others can communicate with the system
through this project, thus facilitating effective implementation and
monitoring of various activities of the voting Software.
10
DESIGN
2.1 Overview
Design is the first step in the development phase for any techniques
and principles for the purpose of defining a device, a process or system in
sufficient detail to permit its physical realization.
Once the software requirements have been analyzed and specified
the software design involves three technical activities - design, coding,
implementation and testing that are required to build and verify the
software.
The design activities are of main importance in this phase, because
in this activity, decisions ultimately affecting the success of the software
implementation and its ease of maintenance are made. These decisions
have the final bearing upon reliability and maintainability of the system.
Design is the only way to accurately translate the customerโ€™s requirements
into finished software or a system.
Design is the place where quality is fostered in development.
Software design is a process through which requirements are translated
into a representation of software. Software design is conducted in two
steps. Preliminary design is concerned with the transformation of
requirements into data.
11
2.2 UML Diagrams
2.2.1 Introduction
Actor:
A coherent set of roles that users of use cases play when interacting with
the use `cases.
Use case:
A description of sequence of actions, including variants, that a system performs
that yields an observable result of value of an actor.
UML stands for Unified Modeling Language. UML is a language for
specifying, visualizing and documenting the system. This is the step while
developing any product after analysis. The goal from this is to produce a model
of the entities involved in the project which later need to be built. The
representation of the entities that are to be used in the product being developed
need to be designed.
There are various kinds of methods in software design:
They are as follows:
๏‚ท Use case Diagram
๏‚ท Sequence Diagram
๏‚ท Activity Diagram
12
2.2.2 USECASE DIAGRAM
A Use case is a description of set of sequence of actions
Graphically it is rendered as an ellipse with solid line including only its
name. Use case diagram is a behavioral diagram that shows a set of
use cases and actors and their relationship. It is an association between
the use cases and actors. An actor represents a real-world object.
Registration
Pharmacy
Doctor
Patient
Reception
Discharge Summary
Laboratory
Fig. 2.1 Use case Diagram
13
2.2.3 SEQUENCE DIAGRAM
Sequence diagram and collaboration diagram are called
INTERACTION DIAGRAMS. An interaction diagram shows an interaction,
consisting of set of objects and their relationship including the messages
that may be dispatched among them.
A sequence diagram is an introduction that empathizes the time
ordering of messages. Graphically a sequence diagram is a table that
shows objects arranged along the X-axis and messages ordered in
increasing time along the Y-axis
Doctor Resgistration Reception Patient
Laboratory Pharmacy
Discharge
Summary
login
View appointments
Register
Send request
done any surgeries
Go to Laboratory
Take madicine
send discharge summary
Discharge patient
Fig. 2.2 Sequence Diagram
14
2.2.4 ACTIVITY DIAGRAM
Patient
Registration
Reception
Doctor
Laboratory
Pharmacy
Discharge
summary
End
start
Fig. 2.2 Activity Diagram
15
2.3 PROJECT MODULES
List of Modules:
๏ƒ˜ Reception
๏ƒ˜ Administration
๏ƒ˜ Pharmacy
๏ƒ˜ Laboratory
๏ƒ˜ Registration
๏ƒ˜ Discharge Summary
16
2.3.2 MODULE DESCRIPTION
Name of the module-1: Reception
Description: The reception module handles various enquiries about the
patient's admission and discharge details, bed census, and the patient's
movements within the hospital. The system can also handle fixed-cost
package deals for patients as well as Doctor Consultation and Scheduling,
Doctor Consultancy Fees and Time Allocation
Sub modules:
๏‚ท Doctor visit schedule
๏‚ท Doctor Appointment Scheduling
๏‚ท Enquiry of Patient
๏‚ท Find History of Patient Enquired.
Name of the module-2: Administration
Description: This module handles all the master entry details for the
hospital requirement such as consultation detail, doctor specialization,
consultancy fee, and service charges.
Employee
Sub modules:
๏‚ท Employee Detail Recording.
๏‚ท Doctor Type .
๏‚ท Doctor Master
๏‚ท Referral Doctor
Name of the module-3: Pharmacy
Description: This module deals with all medical items. This module helps
in maintaining Item Master, Receipt of Drugs/consumables, issue,
handling of material return, generating retail bills, stock maintenance. It
also helps in fulfilling the requirements of both IPD and OPD Pharmacy.
17
Name of the module-4: Laboratory.
Description: This module enables the maintenance of investigation
requests by the patient and generation of test results for the various
available services, such as clinical pathology, X-ray and ultrasound tests.
Requests can be made from various points, including wards, billing,
sample collection and the laboratory receiving point. The laboratory
module is integrated with the in-patient/ outpatient registration, wards
and billing modules.
Name of the module-5: Registration.
Description: This module helps in registering information about patients
and handling both IPD and OPD patientโ€™s query. A unique ID is generated
for each patient after registration. This helps in implementing customer
relationship management and also maintains medical history of the
patient.
Name of the module-6:Discharge Summary.
Description: The module helps in generating patientโ€™s discharge
summary, which includes patientโ€™s health at the time of discharge,
medical history, various diagnosis and drug prescriptions, history of
present illness and course in hospital.
18
2.3.3 SCREEN SHOTS
Figure 2.4 Home Page
19
Figure 2.5 Admin Page
20
Figure 2.6 Registration page
21
Figure 2.7 Operation Theater
22
Figure 2.8 Medical Test
23
Figure 2.9 Pharmacy Page
24
Figure 2.10 Discharge Page
25
DATA DICTIONARY
3.1 DATABASE TABLES:
Table 3.1 Doctor Registration
Name NULL /
NOTNULL
TYPE KEY
Name Null Varchar (20)
Loginid Null Varchar(20)
password Null Varchar(20)
Department Null Varchar(20)
Specialization Null Varchar(20)
Phonenumber Null Bigint
Address Null Varchar(20)
Email Null Varchar(20)
Table 3.2 Employee Registration
Name NULL /
NOTNULL
TYPE KEY
Name Null Varchar (20)
Loginid Null Varchar(20)
password Null Varchar(20)
Department Null Varchar(20)
Phonenumber Null Bigint
Address Null Varchar(20)
Email Null Varchar(20)
26
Table 3.3 Inpatient Registration
Name NULL /
NOTNULL
TYPE KEY
Patientname Null Varchar (20)
Patientid Not Null Varchar(20) Primary
Gender Null Varchar(20)
Age Null Int
Phoneres Null Bigint
Phonemob Null Bigint
Maritual Null Varchar(20)
Occupation Null Varchar(20)
Admid Null Int
Admdate Null Datetime
Admtime Null Datetime
Status Null Varchar(20)
Symptoms Null Varchar(20)
Department Null Varchar(20)
Wardno Null Int
Bedno Null Int
Doctor Null Varchar(20)
Table 3.4 Out Patient Registration
Name NULL /
NOTNULL
TYPE KEY
Patientname Null Varchar (20)
Patientid Not Null Varchar(20) Primary
Gender Null Varchar(20)
Age Null Int
Address Null Varchar(20)
Assigndoctor Null Varchar(20)
Phoneres Null Bigint
Phonemob Null Bigint
Opdate Null Datetime
Department Null Varchar(20)
27
Table 3.5 Patient Information
Name NULL /
NOTNULL
TYPE KEY
pid Not null Varchar(20) Foreign
Patientname Null Varchar(20)
Age Null Int
Department Null Varchar(20)
Doctor Null Varchar(20)
Table 3.6 Surgery Information
Name NULL /
NOTNULL
TYPE KEY
pid Not null Varchar(20) Foreign
Patientname Null Varchar(20)
Age Null Int
Department Null Varchar(20)
Doctor Null Varchar(20)
Surgerydate Null Datetime
Table 3.7 Blood test
Name NULL /
NOTNULL
TYPE KEY
Patienttype Null Varchar(20)
Patientid Null Varchar(20)
Patientname Null Varchar(20)
Mediclatestype Null Varchar(20)
Bloodgroup Null Varchar(20)
Haemoglobin Null Varchar(20)
Bloodsugar Null Varchar(20)
Sacid Null Varchar(20)
Description Null Varchar(20)
28
Table 3.8 Urine test
Name NULL /
NOTNULL
TYPE KEY
Patienttype Null Varchar(20)
Patientid Null Varchar(20)
Patientname Null Varchar(20)
Mediclatestype Null Varchar(20)
Color Null Varchar(20)
Clarity Null Varchar(20)
Odor Null Varchar(20)
Specificgravity Null Varchar(20)
Glucose Null Varchar(20)
Description Null Varchar(20)
Table 3.9 Operation
Name NULL /
NOTNULL
TYPE KEY
Patienttype Null Varchar(20)
Patientid Null Varchar(20)
Patientname Null Varchar(20)
Refdoctor Null Varchar(20)
Operationtype Null Varchar(20)
Operatonresult Null Datetime
Table 3.10 Pharmacy Information
Name NULL /
NOTNULL
TYPE KEY
Patienttype Null Varchar(20)
Patientid Null Varchar(20)
Department Null Varchar(20)
Patientname Null Varchar(20)
Medicine Null Varchar(20)
Table 3.11 Discharge Summary
Name NULL /
NOTNULL
TYPE KEY
Patientid Null Varchar(20)
Patientname Null Varchar(20)
Joiondate Null Datetime
Dischargedate Null Datetime
29
CONCLUSION
The package was designed in such a way that future modifications can be
done easily. The following conclusion can be deduced from the
development of the project.
๏ƒ˜ Automation of the entire system improves the efficiency
๏ƒ˜ It provides a friendly graphical user interface which proves to
be better when compared to the existing system.
๏ƒ˜ It gives appropriate access to the authorized users depending
on their permissions.
๏ƒ˜ It effectively overcomes the delay in communications.
๏ƒ˜ Updating of information becomes so easier.
๏ƒ˜ System security, data security and reliability are the striking
features.
๏ƒ˜ The System has adequate scope for modification in future if it
is necessary.
30
FUTURE ENHANCEMENTS
This application avoids the manual work and the problems concern with it.
It is an easy way to obtain the information regarding the various travel
services that are present in our System.
Well I and my team member have worked hard in order to present an
improved website better than the existing oneโ€™s regarding the information
about the various activities. Still, we found out that the project can be
done in a better way. Primarily, In this system patient login and then go
to reception. By using this patient will send request for consulting the
doctor. Reception will set the date for doctor appointments. After that
doctor see his appointments and see the patients, surgeries also done.
The next enhancement is, we will develop online services. That
mean, if patient have any problems he can send his problem to the doctor
through internet from his home then doctor will send reply to him. In this
patients have some login name and password.
31
BIBLIOGRAPHY
1. MICROSOFT .NET WITH C#,Microsoft .net series
2. ASP .NET 2.0 PROFESSIONAL,Wrox Publishers
3. ASP .NET WITH C# 2005, Apress Publications
4. C# COOK BOOK, O reilly Publications
5. PROGRAMMING MICROSOFT ASP .NET 2.0 APPLICATION, Wrox Professional
Guide
6. BEGINNING ASP .NET 2.0 E-COMMERCE IN C# 2005, Novice to Professional.
WEBSITES:
1. www.google.com
2. www.microsoft.com

More Related Content

What's hot

Hospital Management System
Hospital Management SystemHospital Management System
Hospital Management System
Saurabh Tripathi
ย 
Hospital management system
Hospital management systemHospital management system
Hospital management system
subu
ย 
PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4
PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4
PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4
NICHOLAS RATEMO
ย 
"Hospital Management"
"Hospital Management""Hospital Management"
"Hospital Management"
vivek kct
ย 

What's hot (20)

Project Proposal(Hospital Management System)
Project Proposal(Hospital Management System)Project Proposal(Hospital Management System)
Project Proposal(Hospital Management System)
ย 
Design and implementation of a hospital management system
Design and implementation of a hospital management systemDesign and implementation of a hospital management system
Design and implementation of a hospital management system
ย 
Hospital Management System
Hospital Management SystemHospital Management System
Hospital Management System
ย 
44478167 hospital-management-system
44478167 hospital-management-system44478167 hospital-management-system
44478167 hospital-management-system
ย 
Devnet hospital management system
Devnet hospital management system Devnet hospital management system
Devnet hospital management system
ย 
Majd
MajdMajd
Majd
ย 
Hospital management system
Hospital management systemHospital management system
Hospital management system
ย 
Hospital Management System
Hospital Management SystemHospital Management System
Hospital Management System
ย 
HOSPITAL MANAGEMENT SYSTEM PROJECT
HOSPITAL MANAGEMENT SYSTEM PROJECTHOSPITAL MANAGEMENT SYSTEM PROJECT
HOSPITAL MANAGEMENT SYSTEM PROJECT
ย 
Online doctor appointment and emr system
Online doctor appointment and emr systemOnline doctor appointment and emr system
Online doctor appointment and emr system
ย 
Hospital management system
Hospital management systemHospital management system
Hospital management system
ย 
PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4
PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4
PROJECT-HOSPITAL MANAGEMENT SYSTEM CHAP. 1 TO 4
ย 
"Hospital Management"
"Hospital Management""Hospital Management"
"Hospital Management"
ย 
Hospital management synopsis
Hospital management synopsisHospital management synopsis
Hospital management synopsis
ย 
Hospital Management System Project
Hospital Management System ProjectHospital Management System Project
Hospital Management System Project
ย 
Srs hospital management
Srs hospital managementSrs hospital management
Srs hospital management
ย 
hospital management System
hospital management Systemhospital management System
hospital management System
ย 
Hospital management
Hospital managementHospital management
Hospital management
ย 
Hospital Management System
Hospital Management SystemHospital Management System
Hospital Management System
ย 
Hospital management system dfd
Hospital management system dfdHospital management system dfd
Hospital management system dfd
ย 

Similar to Hospital management system

Materi 4 Information System Engineering Sim 1223511116853894 8
Materi 4 Information System Engineering Sim 1223511116853894 8Materi 4 Information System Engineering Sim 1223511116853894 8
Materi 4 Information System Engineering Sim 1223511116853894 8
Zidny Nafan
ย 

Similar to Hospital management system (20)

Mvc architecture driven design and agile implementation of a web based softwa...
Mvc architecture driven design and agile implementation of a web based softwa...Mvc architecture driven design and agile implementation of a web based softwa...
Mvc architecture driven design and agile implementation of a web based softwa...
ย 
A SOFTWARE REQUIREMENT ENGINEERING TECHNIQUE USING OOADA-RE AND CSC FOR IOT B...
A SOFTWARE REQUIREMENT ENGINEERING TECHNIQUE USING OOADA-RE AND CSC FOR IOT B...A SOFTWARE REQUIREMENT ENGINEERING TECHNIQUE USING OOADA-RE AND CSC FOR IOT B...
A SOFTWARE REQUIREMENT ENGINEERING TECHNIQUE USING OOADA-RE AND CSC FOR IOT B...
ย 
Project Documentation Student Management System format.pptx
Project Documentation Student Management System format.pptxProject Documentation Student Management System format.pptx
Project Documentation Student Management System format.pptx
ย 
Materi 4 Information System Engineering Sim 1223511116853894 8
Materi 4 Information System Engineering Sim 1223511116853894 8Materi 4 Information System Engineering Sim 1223511116853894 8
Materi 4 Information System Engineering Sim 1223511116853894 8
ย 
Hostel management system (5)
Hostel management system (5)Hostel management system (5)
Hostel management system (5)
ย 
235429094 jobportal-documentation
235429094 jobportal-documentation235429094 jobportal-documentation
235429094 jobportal-documentation
ย 
using LPP
using LPPusing LPP
using LPP
ย 
Srs
SrsSrs
Srs
ย 
IRJET- Analyzing, Designing and Implementing a Consulting Company for Managem...
IRJET- Analyzing, Designing and Implementing a Consulting Company for Managem...IRJET- Analyzing, Designing and Implementing a Consulting Company for Managem...
IRJET- Analyzing, Designing and Implementing a Consulting Company for Managem...
ย 
combinepdf
combinepdfcombinepdf
combinepdf
ย 
FROM PLM TO ERP : A SOFTWARE SYSTEMS ENGINEERING INTEGRATION
FROM PLM TO ERP : A SOFTWARE SYSTEMS ENGINEERING INTEGRATIONFROM PLM TO ERP : A SOFTWARE SYSTEMS ENGINEERING INTEGRATION
FROM PLM TO ERP : A SOFTWARE SYSTEMS ENGINEERING INTEGRATION
ย 
Issue Management System
Issue Management SystemIssue Management System
Issue Management System
ย 
MEDICE LAB: Custom Hospital Automation In-House Application
MEDICE LAB: Custom Hospital Automation In-House ApplicationMEDICE LAB: Custom Hospital Automation In-House Application
MEDICE LAB: Custom Hospital Automation In-House Application
ย 
context-sdm-brochure
context-sdm-brochurecontext-sdm-brochure
context-sdm-brochure
ย 
Local Service Search Engine Management System LSSEMS
Local Service Search Engine Management System LSSEMSLocal Service Search Engine Management System LSSEMS
Local Service Search Engine Management System LSSEMS
ย 
Sdpl1
Sdpl1Sdpl1
Sdpl1
ย 
SCHOOL_MANAGEMENT_SYSTEM_This_Report_Pre.doc
SCHOOL_MANAGEMENT_SYSTEM_This_Report_Pre.docSCHOOL_MANAGEMENT_SYSTEM_This_Report_Pre.doc
SCHOOL_MANAGEMENT_SYSTEM_This_Report_Pre.doc
ย 
College Management System project
College Management System projectCollege Management System project
College Management System project
ย 
Development of Intelligence Process Tracking System for Job Seekers
Development of Intelligence Process Tracking System for Job SeekersDevelopment of Intelligence Process Tracking System for Job Seekers
Development of Intelligence Process Tracking System for Job Seekers
ย 
Erp application
Erp applicationErp application
Erp application
ย 

Recently uploaded

Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night StandCall Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
amitlee9823
ย 
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
ย 
Top Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoor
dharasingh5698
ย 
Call Girls in Netaji Nagar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Netaji Nagar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Netaji Nagar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Netaji Nagar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 

Recently uploaded (20)

Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
ย 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
ย 
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
ย 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
ย 
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night StandCall Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
ย 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
ย 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
ย 
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
ย 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
ย 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
ย 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
ย 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
ย 
Intro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfIntro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdf
ย 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
ย 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ย 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
ย 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
ย 
Top Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor ๐Ÿ“ฑ {7001035870} VIP Escorts chittoor
ย 
Call Girls in Netaji Nagar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Netaji Nagar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Netaji Nagar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Netaji Nagar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
ย 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
ย 

Hospital management system

  • 1. 1 Hospital Management System By Rishit Gajjar (10BIT031) Mehul Ranavasiya (10BIT047) DEPARTMENT OF COMPUTER SCIENCE AND ENGINERING Ahmedabad 382481 November 2013
  • 2. 2 Hospital Management System Minor Project Submitted in partial fulfillment of the requirements For the degree of Bachelors of Technology in Information Technology By Rishit Gajjar (10BIT031) Mehul Ranavasiya (10BIT047) Guided By Mr. Sapan Mankad [DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING] DEPARTMENT OF COMPUTER SCICEN AND ENGINEERING Ahmedabad 382481 November 2013
  • 3. 3 CERTIFICATE This is to certify that the Minor Project entitled Hospital Management System submitted by Rishit Gajjar(10bit031),Mehul Ranavasiya (10bit047), towards the partial fulfillment of the requirements for the degree of Bachelors of Technology in Information Technology of Nirma University of Science and Technology, Ahmedabad is the record of work carried out by them under my supervision and guidance. In my opinion, the submitted work has reached a level required for being accepted for examination. The results embodied in this minor project, to the best of my knowledge, havenโ€™t been submitted to any other university or institution for award of any degree or diploma. Prof Sapan Mankad Dr. Sanjay Garg Guide, Professor and Head, Assistant Professor CSE Department, Department of Computer Engineering, Institute of Technology, Institute of Technology, Nirma University, Nirma University, Ahmedabad Ahmedabad
  • 4. 4 ACKNOWLEDGEMENT I would like thank to all those who are involved in this endeavor for their kind cooperation for its successful completion. At the outset, I wish to express my sincere gratitude to all those people who have helped me to complete this project in an efficient manner. I offer my special thanks to my Project guide Prof. SAPAN MANKAD, Assistant Professor, Department of Computer Science & Engineering, Institute of Technology, Nirma University, Ahmedabad without whose help and support throughout this project would not have been this success. I am thankful to Dr. K KOTECHA, Director and Institute of Technology, Ahmedabad for his kind support in all respect during my study. I would like to thank Dr. SANJAY GARG, Head, Department of Computer Engineering, Institute of Technology, Nirma University, who gave opportunity to do this project at an extreme organization. Most of all and more than ever, I would like to thanks my family members for their warmness, support, encouragement, kindness and patience. I am really thankful to all my friends who always advised and motivated me throughout the course. RISHIT GAJJAR Roll No.10BIT031 MEHUL RANAVASIYA Roll No.10BIT047
  • 5. 5 ABSTRACT Many Hospitals currently use a manual system for the management and maintenance of critical information. The current system requires numerous paper forms, with data stores spread throughout the hospital management infrastructure. Often information (on forms) is incomplete, or does not follow management standards. Forms are often lost in transit between departments requiring a comprehensive auditing process to ensure that no vital information is lost. Multiple copies of the same information exist in the hospital and may lead to inconsistencies in data in various data stores. A significant part of the operation of any hospital involves the acquisition, management and timely retrieval of great volumes of information. This information typically involves; patient personal information and medical history, staff information, room and ward scheduling, staff scheduling, operating theater scheduling and various facilities waiting lists. All of this information must be managed in an efficient and cost wise fashion so that an institution's resources may be effectively utilized HMS will automate the management of the hospital making it more efficient and error free. It aims at standardizing data, consolidating data ensuring data integrity and reducing inconsistencies.
  • 6. 6 CONTENTS Certificate 3 Acknowledgement 4 Abstract 5 Contents 6 List of figures 7 List of tables 8 Chapter 1 Introduction 9 1.1 General 9 Chapter 2 Design 10 2.1 Overview 10 2.2 UML Diagram 10 2.2.1 Introduction 11 2.2.2 Use case Diagram 12 2.2.3 Sequence Diagram 13 2.2.4 Activity Diagram 14 2.3 Project Module 2.3.1 List of Modules 15 2.3.2 Module Description 16 2.3.3 Screen Shots 18 Chapter 3 Database 25 3.1 Data Dictionary 25 Chapter 4 Conclusion 29 4.1 Conclusions 29 4.2 Future Enhancements 30 Bibliography 31
  • 7. 7 LIST OF FIGURES Figure No. Caption Page No. Figure 2.1 Use case Diagram 12 Figure 2.2 Sequence Diagram 13 Figure 2.3 Activity Diagram 14 Figure 2.4 Home Page 18 Figure 2.5 Admin Page 19 Figure 2.6 Registration page 20 Figure 2.7 Operation Theater 21 Figure 2.8 Medical Test 22 Figure 2.9 Pharmacy Page 23 Figure 2.10 Discharge Page 24
  • 8. 8 LIST OF TABLES Table No. Caption Page No. Table 3.1 Doctor Registration 25 Table 3.2 Employee Registration 25 Table 3.3 Inpatient Registration 26 Table 3.4 Out Patient Registration 26 Table 3.5 Patient Information 27 Table 3.6 Surgery Information 27 Table 3.7 Blood test 27 Table 3.8 Urine test 28 Table 3.9 Operation 28 Table 3.10 Pharmacy Information 28 Table 3.11 Discharge Summary 28
  • 9. 9 INTRODUCTION 1.1 GENERAL Documenting the assembly, maintenance, use, and troubleshooting of a system as complex as a voting system is a difficult task. A single system might combine proprietary hardware, custom operating systems and software, commodity personal computers, and pen and paper. Describing these highly varied components is one function of voting system documentation .But it is not only voting system technology that is heterogeneous; so are voting systems users, and the environments in which the systems are used. Election officials, poll workers, and voters often need guidance from documents in order to administer or use a voting system. In addition, voting system certificationโ€”the process by which a system is approved for use in stateโ€” demands evidence that a voting system complies with one or more sets of standards or guidelines. Documentation provides the details that certification bodies need to evaluate the System. Taken as a whole, voting system documentation must explain the system in several ways to meet the needs of these multiple audiences. As the modern organizations are automated and computers are working as per the instructions, it becomes essential for the coordination of human beings, commodity and computers in a modern organization. Many big cities where the life is busy needs the transaction of the goods within few minutes of time. So, this online information recorded by the distributor helps him to complete this task within the time. The administrators and all the others can communicate with the system through this project, thus facilitating effective implementation and monitoring of various activities of the voting Software.
  • 10. 10 DESIGN 2.1 Overview Design is the first step in the development phase for any techniques and principles for the purpose of defining a device, a process or system in sufficient detail to permit its physical realization. Once the software requirements have been analyzed and specified the software design involves three technical activities - design, coding, implementation and testing that are required to build and verify the software. The design activities are of main importance in this phase, because in this activity, decisions ultimately affecting the success of the software implementation and its ease of maintenance are made. These decisions have the final bearing upon reliability and maintainability of the system. Design is the only way to accurately translate the customerโ€™s requirements into finished software or a system. Design is the place where quality is fostered in development. Software design is a process through which requirements are translated into a representation of software. Software design is conducted in two steps. Preliminary design is concerned with the transformation of requirements into data.
  • 11. 11 2.2 UML Diagrams 2.2.1 Introduction Actor: A coherent set of roles that users of use cases play when interacting with the use `cases. Use case: A description of sequence of actions, including variants, that a system performs that yields an observable result of value of an actor. UML stands for Unified Modeling Language. UML is a language for specifying, visualizing and documenting the system. This is the step while developing any product after analysis. The goal from this is to produce a model of the entities involved in the project which later need to be built. The representation of the entities that are to be used in the product being developed need to be designed. There are various kinds of methods in software design: They are as follows: ๏‚ท Use case Diagram ๏‚ท Sequence Diagram ๏‚ท Activity Diagram
  • 12. 12 2.2.2 USECASE DIAGRAM A Use case is a description of set of sequence of actions Graphically it is rendered as an ellipse with solid line including only its name. Use case diagram is a behavioral diagram that shows a set of use cases and actors and their relationship. It is an association between the use cases and actors. An actor represents a real-world object. Registration Pharmacy Doctor Patient Reception Discharge Summary Laboratory Fig. 2.1 Use case Diagram
  • 13. 13 2.2.3 SEQUENCE DIAGRAM Sequence diagram and collaboration diagram are called INTERACTION DIAGRAMS. An interaction diagram shows an interaction, consisting of set of objects and their relationship including the messages that may be dispatched among them. A sequence diagram is an introduction that empathizes the time ordering of messages. Graphically a sequence diagram is a table that shows objects arranged along the X-axis and messages ordered in increasing time along the Y-axis Doctor Resgistration Reception Patient Laboratory Pharmacy Discharge Summary login View appointments Register Send request done any surgeries Go to Laboratory Take madicine send discharge summary Discharge patient Fig. 2.2 Sequence Diagram
  • 15. 15 2.3 PROJECT MODULES List of Modules: ๏ƒ˜ Reception ๏ƒ˜ Administration ๏ƒ˜ Pharmacy ๏ƒ˜ Laboratory ๏ƒ˜ Registration ๏ƒ˜ Discharge Summary
  • 16. 16 2.3.2 MODULE DESCRIPTION Name of the module-1: Reception Description: The reception module handles various enquiries about the patient's admission and discharge details, bed census, and the patient's movements within the hospital. The system can also handle fixed-cost package deals for patients as well as Doctor Consultation and Scheduling, Doctor Consultancy Fees and Time Allocation Sub modules: ๏‚ท Doctor visit schedule ๏‚ท Doctor Appointment Scheduling ๏‚ท Enquiry of Patient ๏‚ท Find History of Patient Enquired. Name of the module-2: Administration Description: This module handles all the master entry details for the hospital requirement such as consultation detail, doctor specialization, consultancy fee, and service charges. Employee Sub modules: ๏‚ท Employee Detail Recording. ๏‚ท Doctor Type . ๏‚ท Doctor Master ๏‚ท Referral Doctor Name of the module-3: Pharmacy Description: This module deals with all medical items. This module helps in maintaining Item Master, Receipt of Drugs/consumables, issue, handling of material return, generating retail bills, stock maintenance. It also helps in fulfilling the requirements of both IPD and OPD Pharmacy.
  • 17. 17 Name of the module-4: Laboratory. Description: This module enables the maintenance of investigation requests by the patient and generation of test results for the various available services, such as clinical pathology, X-ray and ultrasound tests. Requests can be made from various points, including wards, billing, sample collection and the laboratory receiving point. The laboratory module is integrated with the in-patient/ outpatient registration, wards and billing modules. Name of the module-5: Registration. Description: This module helps in registering information about patients and handling both IPD and OPD patientโ€™s query. A unique ID is generated for each patient after registration. This helps in implementing customer relationship management and also maintains medical history of the patient. Name of the module-6:Discharge Summary. Description: The module helps in generating patientโ€™s discharge summary, which includes patientโ€™s health at the time of discharge, medical history, various diagnosis and drug prescriptions, history of present illness and course in hospital.
  • 25. 25 DATA DICTIONARY 3.1 DATABASE TABLES: Table 3.1 Doctor Registration Name NULL / NOTNULL TYPE KEY Name Null Varchar (20) Loginid Null Varchar(20) password Null Varchar(20) Department Null Varchar(20) Specialization Null Varchar(20) Phonenumber Null Bigint Address Null Varchar(20) Email Null Varchar(20) Table 3.2 Employee Registration Name NULL / NOTNULL TYPE KEY Name Null Varchar (20) Loginid Null Varchar(20) password Null Varchar(20) Department Null Varchar(20) Phonenumber Null Bigint Address Null Varchar(20) Email Null Varchar(20)
  • 26. 26 Table 3.3 Inpatient Registration Name NULL / NOTNULL TYPE KEY Patientname Null Varchar (20) Patientid Not Null Varchar(20) Primary Gender Null Varchar(20) Age Null Int Phoneres Null Bigint Phonemob Null Bigint Maritual Null Varchar(20) Occupation Null Varchar(20) Admid Null Int Admdate Null Datetime Admtime Null Datetime Status Null Varchar(20) Symptoms Null Varchar(20) Department Null Varchar(20) Wardno Null Int Bedno Null Int Doctor Null Varchar(20) Table 3.4 Out Patient Registration Name NULL / NOTNULL TYPE KEY Patientname Null Varchar (20) Patientid Not Null Varchar(20) Primary Gender Null Varchar(20) Age Null Int Address Null Varchar(20) Assigndoctor Null Varchar(20) Phoneres Null Bigint Phonemob Null Bigint Opdate Null Datetime Department Null Varchar(20)
  • 27. 27 Table 3.5 Patient Information Name NULL / NOTNULL TYPE KEY pid Not null Varchar(20) Foreign Patientname Null Varchar(20) Age Null Int Department Null Varchar(20) Doctor Null Varchar(20) Table 3.6 Surgery Information Name NULL / NOTNULL TYPE KEY pid Not null Varchar(20) Foreign Patientname Null Varchar(20) Age Null Int Department Null Varchar(20) Doctor Null Varchar(20) Surgerydate Null Datetime Table 3.7 Blood test Name NULL / NOTNULL TYPE KEY Patienttype Null Varchar(20) Patientid Null Varchar(20) Patientname Null Varchar(20) Mediclatestype Null Varchar(20) Bloodgroup Null Varchar(20) Haemoglobin Null Varchar(20) Bloodsugar Null Varchar(20) Sacid Null Varchar(20) Description Null Varchar(20)
  • 28. 28 Table 3.8 Urine test Name NULL / NOTNULL TYPE KEY Patienttype Null Varchar(20) Patientid Null Varchar(20) Patientname Null Varchar(20) Mediclatestype Null Varchar(20) Color Null Varchar(20) Clarity Null Varchar(20) Odor Null Varchar(20) Specificgravity Null Varchar(20) Glucose Null Varchar(20) Description Null Varchar(20) Table 3.9 Operation Name NULL / NOTNULL TYPE KEY Patienttype Null Varchar(20) Patientid Null Varchar(20) Patientname Null Varchar(20) Refdoctor Null Varchar(20) Operationtype Null Varchar(20) Operatonresult Null Datetime Table 3.10 Pharmacy Information Name NULL / NOTNULL TYPE KEY Patienttype Null Varchar(20) Patientid Null Varchar(20) Department Null Varchar(20) Patientname Null Varchar(20) Medicine Null Varchar(20) Table 3.11 Discharge Summary Name NULL / NOTNULL TYPE KEY Patientid Null Varchar(20) Patientname Null Varchar(20) Joiondate Null Datetime Dischargedate Null Datetime
  • 29. 29 CONCLUSION The package was designed in such a way that future modifications can be done easily. The following conclusion can be deduced from the development of the project. ๏ƒ˜ Automation of the entire system improves the efficiency ๏ƒ˜ It provides a friendly graphical user interface which proves to be better when compared to the existing system. ๏ƒ˜ It gives appropriate access to the authorized users depending on their permissions. ๏ƒ˜ It effectively overcomes the delay in communications. ๏ƒ˜ Updating of information becomes so easier. ๏ƒ˜ System security, data security and reliability are the striking features. ๏ƒ˜ The System has adequate scope for modification in future if it is necessary.
  • 30. 30 FUTURE ENHANCEMENTS This application avoids the manual work and the problems concern with it. It is an easy way to obtain the information regarding the various travel services that are present in our System. Well I and my team member have worked hard in order to present an improved website better than the existing oneโ€™s regarding the information about the various activities. Still, we found out that the project can be done in a better way. Primarily, In this system patient login and then go to reception. By using this patient will send request for consulting the doctor. Reception will set the date for doctor appointments. After that doctor see his appointments and see the patients, surgeries also done. The next enhancement is, we will develop online services. That mean, if patient have any problems he can send his problem to the doctor through internet from his home then doctor will send reply to him. In this patients have some login name and password.
  • 31. 31 BIBLIOGRAPHY 1. MICROSOFT .NET WITH C#,Microsoft .net series 2. ASP .NET 2.0 PROFESSIONAL,Wrox Publishers 3. ASP .NET WITH C# 2005, Apress Publications 4. C# COOK BOOK, O reilly Publications 5. PROGRAMMING MICROSOFT ASP .NET 2.0 APPLICATION, Wrox Professional Guide 6. BEGINNING ASP .NET 2.0 E-COMMERCE IN C# 2005, Novice to Professional. WEBSITES: 1. www.google.com 2. www.microsoft.com