Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cs427fa20team22
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
htmoss2
cs427fa20team22
Commits
56aae33f
Commit
56aae33f
authored
4 years ago
by
xuechen5
Browse files
Options
Downloads
Patches
Plain Diff
Merge 2 functions into 1
parent
8278e004
No related branches found
No related tags found
2 merge requests
!22
Merge UC92 into Master
,
!15
Merge 5-uc-92-activate-pre-registered-patient-2 into UC92v2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
iTrust/src/edu/ncsu/csc/itrust/action/ViewPreRegisteredPatientListAction.java
+3
-17
3 additions, 17 deletions
...csc/itrust/action/ViewPreRegisteredPatientListAction.java
with
3 additions
and
17 deletions
iTrust/src/edu/ncsu/csc/itrust/action/ViewPreRegisteredPatientListAction.java
+
3
−
17
View file @
56aae33f
...
...
@@ -47,7 +47,7 @@ public class ViewPreRegisteredPatientListAction {
*
* @throws ITrustException
*/
p
rivate
void
getPreRegistered
From
Patients
Table
()
throws
ITrustException
{
p
ublic
List
<
PatientBean
>
getPreRegisteredPatients
()
throws
ITrustException
{
try
{
List
<
PatientBean
>
plist
=
patientDAO
.
getAllPreRegisteredPatients
();
...
...
@@ -56,25 +56,11 @@ public class ViewPreRegisteredPatientListAction {
PreRegisteredPatients
.
add
(
pb
);
}
return
PreRegisteredPatients
;
}
catch
(
DBException
dbe
)
{
throw
new
ITrustException
(
dbe
.
getMessage
());
}
}
/**
* Get the list of Pre-Registered patients
*
* @return the list of patients an HCP has had office visits with
* @throws DBException
*/
public
List
<
PatientBean
>
getPreRegisteredPatients
()
throws
DBException
{
try
{
getPreRegisteredFromPatientsTable
();
}
catch
(
ITrustException
ie
)
{
}
return
PreRegisteredPatients
;
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment