SlideShare una empresa de Scribd logo
1 de 31
Descargar para leer sin conexión
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

Más contenido relacionado

La actualidad más candente

Medical Store Management System Software Engineering Project
Medical Store Management System Software Engineering ProjectMedical Store Management System Software Engineering Project
Medical Store Management System Software Engineering Projecthani2253
 
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 4NICHOLAS RATEMO
 
Hospital Management System-out patient Detail
Hospital Management System-out patient DetailHospital Management System-out patient Detail
Hospital Management System-out patient DetailYogiji Creations
 
Hostpital management system(srs)
Hostpital management system(srs)Hostpital management system(srs)
Hostpital management system(srs)maamir farooq
 
Hospital Management System
Hospital Management SystemHospital Management System
Hospital Management SystemSaurabh Tripathi
 
Online Attendance System
Online Attendance SystemOnline Attendance System
Online Attendance SystemAkash Kr Sinha
 
Pharmacy management system project report
Pharmacy management system project reportPharmacy management system project report
Pharmacy management system project reportDipta Roy
 
Hospital management system project
Hospital management system projectHospital management system project
Hospital management system projectHimani Chopra
 
Hospital Management System
Hospital Management SystemHospital Management System
Hospital Management SystemRANJIT SINGH
 
SRS for Hospital Management System
SRS for Hospital Management SystemSRS for Hospital Management System
SRS for Hospital Management Systemkataria Arvind
 
Hospital management-system
Hospital management-systemHospital management-system
Hospital management-systemsam143143
 
Project Proposal(Hospital Management System)
Project Proposal(Hospital Management System)Project Proposal(Hospital Management System)
Project Proposal(Hospital Management System)SN Chakraborty
 
Pharmacy management system
Pharmacy management systemPharmacy management system
Pharmacy management systemsudiahmad1
 

La actualidad más candente (20)

Medical Store Management System Software Engineering Project
Medical Store Management System Software Engineering ProjectMedical Store Management System Software Engineering Project
Medical Store Management System Software Engineering Project
 
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 System-out patient Detail
Hospital Management System-out patient DetailHospital Management System-out patient Detail
Hospital Management System-out patient Detail
 
Hostpital management system(srs)
Hostpital management system(srs)Hostpital management system(srs)
Hostpital management system(srs)
 
Hospital management system
Hospital management systemHospital management system
Hospital management system
 
Majd
MajdMajd
Majd
 
Hospital Management System
Hospital Management SystemHospital Management System
Hospital Management System
 
Healthcare copy
Healthcare   copyHealthcare   copy
Healthcare copy
 
Online Attendance System
Online Attendance SystemOnline Attendance System
Online Attendance System
 
MEDICAL STORE MANAGEMENT SYSTEM
MEDICAL STORE MANAGEMENT SYSTEMMEDICAL STORE MANAGEMENT SYSTEM
MEDICAL STORE MANAGEMENT SYSTEM
 
HOSPITAL MANAGEMENT SYSTEM PROJECT
HOSPITAL MANAGEMENT SYSTEM PROJECTHOSPITAL MANAGEMENT SYSTEM PROJECT
HOSPITAL MANAGEMENT SYSTEM PROJECT
 
Pharmacy management system project report
Pharmacy management system project reportPharmacy management system project report
Pharmacy management system project report
 
Hospital management system project
Hospital management system projectHospital management system project
Hospital management system project
 
Hospital Management System
Hospital Management SystemHospital Management System
Hospital Management System
 
Use case of hospital managment system
Use case of hospital managment systemUse case of hospital managment system
Use case of hospital managment system
 
SRS for Hospital Management System
SRS for Hospital Management SystemSRS for Hospital Management System
SRS for Hospital Management System
 
Hospital management-system
Hospital management-systemHospital management-system
Hospital management-system
 
Project Proposal(Hospital Management System)
Project Proposal(Hospital Management System)Project Proposal(Hospital Management System)
Project Proposal(Hospital Management System)
 
Mini Project presentation for MCA
Mini Project presentation for MCAMini Project presentation for MCA
Mini Project presentation for MCA
 
Pharmacy management system
Pharmacy management systemPharmacy management system
Pharmacy management system
 

Similar a Hospital management system

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...ijseajournal
 
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...ijseajournal
 
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.pptxAjayPatre1
 
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 8Zidny Nafan
 
Hostel management system (5)
Hostel management system (5)Hostel management system (5)
Hostel management system (5)PRIYANKMZN
 
235429094 jobportal-documentation
235429094 jobportal-documentation235429094 jobportal-documentation
235429094 jobportal-documentationsireesha nimmagadda
 
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...IRJET Journal
 
44478167 hospital-management-system
44478167 hospital-management-system44478167 hospital-management-system
44478167 hospital-management-systemAkshay Iliger
 
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 INTEGRATIONijseajournal
 
Issue Management System
Issue Management SystemIssue Management System
Issue Management SystemPratik Vipul
 
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 ApplicationIRJET Journal
 
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 LSSEMSYogeshIJTSRD
 
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.docbosed0737
 
College Management System project
College Management System projectCollege Management System project
College Management System projectManish Kushwaha
 
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 SeekersIJMIT JOURNAL
 

Similar a 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...
 
44478167 hospital-management-system
44478167 hospital-management-system44478167 hospital-management-system
44478167 hospital-management-system
 
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
 

Último

(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 

Último (20)

(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 

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