Design and Implementation of Appointment Management System (A CASE STUDY OF Federal Medical Center (FMC) .)
Design and Implementation of Appointment Management System (A CASE STUDY OF Federal Medical Center (FMC) .)
MANAGEMENT SYSTEM
CHAPTER ONE
appointment.
1.8 ORGANIZATION OF THE WORK
incomplete information.
• Information: A meaning full material derived from
specified way.
processing.
processing.
an organization.
task.
obey.
order.
2.3.1. Cost-Based
Costs of patients’ waiting time and physicians’ idle time
and overtime are three factors when studies focus on
minimizing the cost of appointment cost. In most of cases,
costs of patients’ waiting time and physicians’ idle time are
the main considerations, such as in Vanden Bosch, Dietz
and Simeoni (1999), Lau and Lau (2000), Robinson and
Chen (2003).
2.3.2. Time-Based
Patient’s waiting time and flow time, and physician’s idle
time and overtime are
measured in terms of mean, maximum, variance and
frequency distribution. In general, it is assumed that
patient’s waiting time is the difference between the
scheduled appointment time and patient’s actual service
start time, but waiting time due to early arrival of the
patient is not taken into consideration. Patient’ flow time is
the total time patient’ spent in the clinic. Physician’s idle
time is defined as the waiting time caused by no patients
waiting to be seen. Overtime time is the difference between
actual and planned finish time of consults. Some papers
studied the appointment system problem with time-based
measurement, such as O’Keefe (1985), Walter (1973),
Vissers and Wijingaard (1979), and Visser, (1979).
2.3.3. Fairness
Fairness represents the uniformity of performance of an
appointment system. It
evaluates the mean waiting time of patients according to
their place in the queue
(Bailey, 1952), variance of waiting time and queue size
(Blanco Whit and Pike, 1964, Fetter and Thompson, 1966,
Yang, Lau and Quek, 1998).
3.1 METHODOLOGY
tools.
This part will explain the different method that was used in
the report and list which are kept for sale effectively and we
can search for other agencies which will assist the hospital.
d. Availability:
This system should always be available for access at 24
hours, 7 days a week. Also in the occurrence of any major
system malfunctioning, the system should be available in 1
to 2 working days, so that the business process is not
severely affected.
e. Ease of use:
Considered the level of knowledge possessed by the users
of this system, a simple but quality user interface should
be developed to make it easy to understand and required
less training.
s e q u e n t i a l b u s i n e s s a n d o p e r a t i o n a l workflows of
system.
Start
In a list view
Appointme format: S/N,
nt Main Something, Date,
form Nothing
Submit
Stop
Record
saved
Stop
Architecture
Main Form
Description
S/N
Date
Something
Nothing
N/b: it must be in
listview
CHAPTER FOUR
4.1 Introduction
Tool/Environment
information.
4.6 Documentation
database.
hall.
The objective of the application was:
5.1 SUMMARY
In summary, this Academic Work has done a great
deal of giving a broad knowledge of what Appointment
Management system is all about using University of
Technology Hospital as a case study. It went as far as
highlighting the works of the application.
5.2 CONCLUSION
From this Academic Work, I have been able to introduce
what the application is all about and how it can be used, it
has achieve the full aim of letting the public know what
Federal Medical Center (FMC) as a case study is all about.
Recommendation
I hereby recommend this Academic work to be used by staff
and management of ……. and indeed any other Institution
with similar structure and organizational framework for the
following reasons:
1. The academic work has been able to solve the problem
related to easy access of the organization Federal
Medical Center (FMC).
2. The application has allow the customer to have contact
• Lack of Time
and SQL.
REFERENCES
Marketing,
Microsoft
Adison-Wesley
Retrieved 2007-08-10.
2015.
September 2011.
21. https://www.naij.com/574434-nigeriaat55-top-5-
reasons-nigerias-capital-moved-lagos-abuja-
photos.html
Retrieved 2007-08-10.
Federal
APPENDICES
3. Module
4. Imports System.Data.SqlClient
5.
6. Module Module1
7. Public cn As New SqlConnection("Data Source=.\sqlexpress;Initial
Catalog=;Integrated Security=True;Pooling=False")
8. Public cmd As New SqlCommand
9. Public da As New SqlDataAdapter
10. Public dr As SqlDataReader
11. Public str As String
12.
13. Public Sub connecttodatabase()
14. cn.Open()
15. cmd = New SqlCommand("IF NOT EXISTS ( SELECT [name] FROM sys.databases
WHERE name = 'appointments' ) CREATE DATABASE appointments ", cn)
16. cmd.ExecuteNonQuery()
17. cn.ChangeDatabase("appointments")
18. cmd = New SqlCommand("if not exists (select * from sysobjects where
name='newApp' and xtype='U') CREATE TABLE newApp([Id] NVARCHAR (MAX) NULL,
[Title] NVARCHAR (MAX) NULL,[Date] DateTime NULL,[Time] DateTime NULL,
[Description] NVARCHAR (MAX) NULL)", cn)
19. cmd.ExecuteNonQuery()
20.
21. cn = New SqlConnection("Data Source=.\sqlexpress;Initial
Catalog=appointments;Integrated Security=True;Pooling=False")
22.
23. End Sub
24.
25. End Module
26.
3. View Dates
4. Public Class ViewDates
5.
6. Private Sub NewAppBindingNavigatorSaveItem_Click(sender As Object, e As
EventArgs)
7. Me.Validate()
8. Me.NewAppBindingSource.EndEdit()
9. Me.TableAdapterManager.UpdateAll(Me.AppointmentsDataSet)
10.
11. End Sub
12.
13. Private Sub ViewDates_Load(sender As Object, e As EventArgs) Handles
MyBase.Load
14. 'TODO: This line of code loads data into the 'AppointmentsDataSet.newApp'
table. You can move, or remove it, as needed.
15. Me.NewAppTableAdapter.Fill(Me.AppointmentsDataSet.newApp)
16.
17. End Sub
18. End Class