Enterprise Application Development: Objectives

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

LAB 04

6-11- 2015

Enterprise Application Development


Objectives:
The
objective of this lab is to make you familiar with
Ado .net Disconnected Model

Instruction:

Indent your code properly


Discussion with peers is strictly prohibited.

10% marks deduction will be for late comers.


Try to debug your code before querying to TAs.

Case Study:
Hospital Management System
Aim:
XYZ hospital is a multi-specialty hospital that includes a number of departments,
rooms, doctors, nurses, compounders, and other staff working in the hospital. Patients having
different kinds of ailments come to the hospital and get checkup done from the concerned
doctors. If required they are admitted in the hospital and discharged after treatment.
The aim of this case study is to design and develop a system for the hospital to
maintain the records of various departments, rooms, and doctors in the hospital. It also
maintains records of the regular patients, patients admitted in the hospital, the checkup of
patients done by the doctors, the patients that have been operated, and patients discharged
from the hospital.

Task 1:
Firstly User will Login the system. After login User will be shown a menu of Doctor Panel and Patient
Panel.
In Doctor Panel user can add new records of Doctors. And also can update and delete
the records of Doctors on the basis of Doc_Id.

In Patient Panel user can add new records of Patient. User can also update and delete the
records of Patients on the basis of Patient_Id.

LAB 04

6-11- 2015

Required Data Base Tables:

Doctor(Id,Doctor_Id,Name,Qualification,ph_no,category)
There are 2 categories of doctors
1) regular doctors
2) call on doctors
Patient(Id,Patient_Id,Name,Age,Gender,ph_no)

Task 2:
Now you have to maintain the Patient Status.
You just need to maintain (ADD) the record of regular patients, patients admitted in the hospital

and also their discharged status.

Required Data Base Tables:

Patient_Admit(id,Patient_id,RoomNo,AdvancePayment,status)
Patient_Regular(id,Patient_id,dateVisit,Payment)
Discharged_Patients(id,AdmitPatientID,Medicine,Payment)

Must use the Disconnected Ado.net Model


Task 1 must be done using Data Table.
Task 2 must be done using Data Adapter.

You might also like