SlideShare a Scribd company logo
cs320_final_project_code/medicalApplication/.classpath
cs320_final_project_code/medicalApplication/.DS_Store
cs320_final_project_code/medicalApplication/.project
medicalApplication
org.eclipse.jdt.core.javabuilder
org.eclipse.m2e.core.maven2Builder
org.eclipse.jdt.core.javanature
org.eclipse.m2e.core.maven2Nature
cs320_final_project_code/medicalApplication/.settings/org.eclip
se.core.resources.prefs
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/test/java=UTF-8
encoding/<project>=UTF-8
cs320_final_project_code/medicalApplication/.settings/org.eclip
se.jdt.core.prefs
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enable
d
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warn
ing
org.eclipse.jdt.core.compiler.source=1.8
cs320_final_project_code/medicalApplication/.settings/org.eclip
se.m2e.core.prefs
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
cs320_final_project_code/medicalApplication/pom.xml
4.0.0
medical.com
medicalApplication
0.0.1-SNAPSHOT
jar
medicalApplication
http://maven.apache.org
UTF-8
org.seleniumhq.selenium
selenium-java
2.47.1
junit
junit
4.10
test
info.cukes
cucumber-java
1.0.2
test
cs320_final_project_code/medicalApplication/src/.DS_Store
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/App.javacs320_final_project_cod
e/medicalApplication/src/main/java/medical/com/medicalApplic
ation/App.javapackage medical.com.medicalApplication;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
import medical.com.medicalApplication.model.Employee;
import medical.com.medicalApplication.prompts.MedicalRecord
Prompt;
import medical.com.medicalApplication.services.DoctorService;
import medical.com.medicalApplication.services.MedicalRescor
dService;
import medical.com.medicalApplication.util.MenuUtil;
import medical.com.medicalApplication.util.Pair;
//Add duplicate doctors
//Adding medical records
//Find Allergies per patient
publicclassApp{
privatestaticList<String> mainMenu =Arrays.asList("","Main M
enu","Please select from the following options",
"1 Print Patient List","2 Print Doctor List","3 Add a Doctor","4
Add a Patient","5 Medical Records",
"6 Search for Allergies","0 to Exit");
publicstaticvoid main(String[] args){
//Created for testing purposes password is "Open"
Employee employee =newEmployee("Mike","1111");
//Read console input
Scanner scanner =newScanner(System.in);
scanner.useDelimiter(System.getProperty("line.separator")
);
int passwordAttepts =3;
String password =null;
boolean loginSuccess =false;
//Login
while(passwordAttepts >0&&!loginSuccess){
System.out.println("Login Enter Password");
password = scanner.next();
loginSuccess = employee.getPassword().equals(passwor
d);
passwordAttepts--;
}
if(loginSuccess){
MedicalRecordPrompt medicalRecordPrompt =newMedicalReco
rdPrompt();
int input =-1;
System.out.println("Welcome to Mercy Hospitol System");
while(input !=0){
mainMenu.stream().forEach(System.out::println);
input = scanner.nextInt();
switch(input){
case1:
MedicalRescordService.getReference().getAllPatients().forEach
(System.out::println);
break;
case2:
DoctorService.getReference().getAllDoctors().forEach(System.o
ut::println);
break;
case3:
addPerson(true, scanner);
break;
case4:
addPerson(false, scanner);
break;
case5:
medicalRecordPrompt.mainPrompt(scanner);
break;
case6:
medicalRecordPrompt.findAllPatientsWithAllergy
(scanner).forEach(System.out::println);
break;
case0:
System.out.println("Good bye!");
break;
default:
break;
}
}
scanner.close();
}else{
System.out.println("Invalid Password after 3 tries");
}
}
privatestaticvoid addPerson(boolean addDoctor,Scanner scanner
){
int input =-1;
String person = addDoctor ?"Doctor":"Patient";
while(input !=0){
Pair response =MenuUtil.createTwoItemMenu(scanner,"Enter N
ame:","Enter ID:");
boolean personAdded =false;
if(addDoctor){
personAdded =DoctorService.getReference().addDoct
or(response.getOne(), response.getTwo());
}else{
personAdded =MedicalRescordService.getReference(
).addPatient(response.getOne(), response.getTwo());
}
if(personAdded){
System.out.println(person +" "+ response.getOne()+" was succe
sfully addedn");
}else{
System.out.println(person +" "+ response.getOne()+" Could not
be addedn");
}
System.out.println(
"Would you like to add another "+ person +"?n 1 for Yesn 0 T
o return to the Main Menu");
input = scanner.nextInt();
}
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Allergey.javacs320_final_
project_code/medicalApplication/src/main/java/medical/com/me
dicalApplication/model/Allergey.javapackage medical.com.medi
calApplication.model;
/**
* This class represent the Allergy model in the application
*
*/
publicclassAllergey{
privateString name;
publicAllergey(String name){
this.name = name;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
@Override
publicString toString(){
return"Allergy "+ name;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Doctor.javacs320_final_pr
oject_code/medicalApplication/src/main/java/medical/com/medi
calApplication/model/Doctor.javapackage medical.com.medical
Application.model;
/**
*
* This class represents the Doctor data model in the system
*
*/
publicclassDoctor{
privateString name;
privateString id;
publicDoctor(String name,String id){
super();
this.name = name;
this.id = id;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
publicString getId(){
return id;
}
publicvoid setId(String id){
this.id = id;
}
@Override
publicString toString(){
return"Doctor Name:"+ name +" ID: "+id;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Employee.javacs320_final
_project_code/medicalApplication/src/main/java/medical/com/m
edicalApplication/model/Employee.javapackage medical.com.m
edicalApplication.model;
/**
*
* This class represents the employee model in the system
*
*/
publicclassEmployee{
privateString name;
privateString id;
privateString password;
publicEmployee(String name,String id){
super();
this.name = name;
this.id = id;
this.password ="Open";
}
publicString getName(){
return name;
}
publicString getId(){
return id;
}
publicString getPassword(){
return password;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/MedicalRecord.javacs320_
final_project_code/medicalApplication/src/main/java/medical/c
om/medicalApplication/model/MedicalRecord.javapackage medi
cal.com.medicalApplication.model;
/**
*
*
* This class represents a medical record model in the system
*
*/
publicclassMedicalRecord{
privatePatient patient;
privatePatientHistory history;
publicMedicalRecord(Patient patient){
super();
this.patient = patient;
this.history =newPatientHistory();
}
publicPatient getPatient(){
return patient;
}
publicPatientHistory getHistory(){
return history;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Medication.javacs320_fina
l_project_code/medicalApplication/src/main/java/medical/com/
medicalApplication/model/Medication.javapackage medical.com
.medicalApplication.model;
/**
*
* This class represents the mediation model in the system
*
*/
publicclassMedication{
privateString name;
privateString startDate;
privateString endDate;
privateString dose;
publicMedication(String name,String startDate,String endDate,S
tring dose){
super();
this.name = name;
this.startDate = startDate;
this.endDate = endDate;
this.dose = dose;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
publicString getStartDate(){
return startDate;
}
publicvoid setStartDate(String startDate){
this.startDate = startDate;
}
publicString getEndDate(){
return endDate;
}
publicvoid setEndDate(String endDate){
this.endDate = endDate;
}
publicString getDose(){
return dose;
}
publicvoid setDose(String dose){
this.dose = dose;
}
@Override
publicString toString(){
return"Medication:"+name +" Start Date: "+ startDate +" End D
ate: "+endDate+" Dose: "+dose;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Patient.javacs320_final_pr
oject_code/medicalApplication/src/main/java/medical/com/medi
calApplication/model/Patient.javapackage medical.com.medical
Application.model;
/**
*
* This class represents a patient model in the system
*
*/
publicclassPatient{
privateString name;
privateString id;
publicPatient(String name,String id){
super();
this.name = name;
this.id = id;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
publicString getId(){
return id;
}
publicvoid setId(String id){
this.id = id;
}
@Override
publicString toString(){
return"Patient Name: "+name+" ID: "+id;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/PatientHistory.javacs320_
final_project_code/medicalApplication/src/main/java/medical/c
om/medicalApplication/model/PatientHistory.javapackage medi
cal.com.medicalApplication.model;
import java.util.ArrayList;
import java.util.List;
/**
*
* This class represents a patient history model in the system
*
*/
publicclassPatientHistory{
privateList<Treatment> treatments;
privateList<Medication> medications;
privateList<Allergey> allergy;
publicPatientHistory(){
this.treatments =newArrayList<Treatment>();
this.medications =newArrayList<Medication>();
this.allergy =newArrayList<Allergey>();
}
publicvoid addTreatment(Treatment treatment){
treatments.add(treatment);
}
publicvoid addAllergy(Allergey allegry){
allergy.add(allegry);
}
publicvoid addMedication(Medication medication){
if(treatments !=null){
medications.add(medication);
}
}
publicList<Allergey> getAlergies(){
return allergy;
}
publicList<Treatment> getAllTreatments(){
return treatments;
}
publicList<Medication> getAllMedications(){
return medications;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Treatment.javacs320_final
_project_code/medicalApplication/src/main/java/medical/com/m
edicalApplication/model/Treatment.javapackage medical.com.m
edicalApplication.model;
/**
*
* This class represents a treatment model in the system.
*
*/
publicclassTreatment{
privateString treatmentDate;
privateString diagnose;
privateString description;
publicTreatment(String treatmentDate,String diagnose,String de
scription){
super();
this.treatmentDate = treatmentDate;
this.diagnose = diagnose;
this.…
CS 320 Final Project Test Plan
I. Feature Requirements: This test plan will document unit
testing requirements for accepting the
medical record system (MRS). The MRS will have the following
features that must be tested to
ensure the quality of the product:
allow the user to log in and
add a doctor to the list of doctors. Doctors’ names do not have
to be unique, but
doctors’ IDs should be unique.
allow the user to add a
medical record to a patient.
i. Add a patient.
ii. Add a medical record with treatments, medications, and
allergies.
o When you create a medical record, it is necessary to create a
patient
history, which will contain 1 to many treatments, 1 to many
medications,
and 1 to many allergies. Medications cannot be assigned to a
patient
history unless there has been a treatment first.
the user to search for
allergies and print all patients with allergies.
II. Roles: The software developer will perform unit tests.
III. Testing levels
i. Unit testing
IV. Testing artifacts: The deliverable for this project will be a
zip file containing all the JUnit tests.
cs320_final_project_code/medicalApplication/.classpath
cs320_final_project_code/medicalApplication/.DS_Store
cs320_final_project_code/medicalApplication/.project
medicalApplication
org.eclipse.jdt.core.javabuilder
org.eclipse.m2e.core.maven2Builder
org.eclipse.jdt.core.javanature
org.eclipse.m2e.core.maven2Nature
cs320_final_project_code/medicalApplication/.settings/org.eclip
se.core.resources.prefs
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/test/java=UTF-8
encoding/<project>=UTF-8
cs320_final_project_code/medicalApplication/.settings/org.eclip
se.jdt.core.prefs
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enable
d
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warn
ing
org.eclipse.jdt.core.compiler.source=1.8
cs320_final_project_code/medicalApplication/.settings/org.eclip
se.m2e.core.prefs
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
cs320_final_project_code/medicalApplication/pom.xml
4.0.0
medical.com
medicalApplication
0.0.1-SNAPSHOT
jar
medicalApplication
http://maven.apache.org
UTF-8
org.seleniumhq.selenium
selenium-java
2.47.1
junit
junit
4.10
test
info.cukes
cucumber-java
1.0.2
test
cs320_final_project_code/medicalApplication/src/.DS_Store
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/App.javacs320_final_project_cod
e/medicalApplication/src/main/java/medical/com/medicalApplic
ation/App.javapackage medical.com.medicalApplication;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
import medical.com.medicalApplication.model.Employee;
import medical.com.medicalApplication.prompts.MedicalRecord
Prompt;
import medical.com.medicalApplication.services.DoctorService;
import medical.com.medicalApplication.services.MedicalRescor
dService;
import medical.com.medicalApplication.util.MenuUtil;
import medical.com.medicalApplication.util.Pair;
//Add duplicate doctors
//Adding medical records
//Find Allergies per patient
publicclassApp{
privatestaticList<String> mainMenu =Arrays.asList("","Main M
enu","Please select from the following options",
"1 Print Patient List","2 Print Doctor List","3 Add a Doctor","4
Add a Patient","5 Medical Records",
"6 Search for Allergies","0 to Exit");
publicstaticvoid main(String[] args){
//Created for testing purposes password is "Open"
Employee employee =newEmployee("Mike","1111");
//Read console input
Scanner scanner =newScanner(System.in);
scanner.useDelimiter(System.getProperty("line.separator")
);
int passwordAttepts =3;
String password =null;
boolean loginSuccess =false;
//Login
while(passwordAttepts >0&&!loginSuccess){
System.out.println("Login Enter Password");
password = scanner.next();
loginSuccess = employee.getPassword().equals(passwor
d);
passwordAttepts--;
}
if(loginSuccess){
MedicalRecordPrompt medicalRecordPrompt =newMedicalReco
rdPrompt();
int input =-1;
System.out.println("Welcome to Mercy Hospitol System");
while(input !=0){
mainMenu.stream().forEach(System.out::println);
input = scanner.nextInt();
switch(input){
case1:
MedicalRescordService.getReference().getAllPatients().forEach
(System.out::println);
break;
case2:
DoctorService.getReference().getAllDoctors().forEach(System.o
ut::println);
break;
case3:
addPerson(true, scanner);
break;
case4:
addPerson(false, scanner);
break;
case5:
medicalRecordPrompt.mainPrompt(scanner);
break;
case6:
medicalRecordPrompt.findAllPatientsWithAllergy
(scanner).forEach(System.out::println);
break;
case0:
System.out.println("Good bye!");
break;
default:
break;
}
}
scanner.close();
}else{
System.out.println("Invalid Password after 3 tries");
}
}
privatestaticvoid addPerson(boolean addDoctor,Scanner scanner
){
int input =-1;
String person = addDoctor ?"Doctor":"Patient";
while(input !=0){
Pair response =MenuUtil.createTwoItemMenu(scanner,"Enter N
ame:","Enter ID:");
boolean personAdded =false;
if(addDoctor){
personAdded =DoctorService.getReference().addDoct
or(response.getOne(), response.getTwo());
}else{
personAdded =MedicalRescordService.getReference(
).addPatient(response.getOne(), response.getTwo());
}
if(personAdded){
System.out.println(person +" "+ response.getOne()+" was succe
sfully addedn");
}else{
System.out.println(person +" "+ response.getOne()+" Could not
be addedn");
}
System.out.println(
"Would you like to add another "+ person +"?n 1 for Yesn 0 T
o return to the Main Menu");
input = scanner.nextInt();
}
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Allergey.javacs320_final_
project_code/medicalApplication/src/main/java/medical/com/me
dicalApplication/model/Allergey.javapackage medical.com.medi
calApplication.model;
/**
* This class represent the Allergy model in the application
*
*/
publicclassAllergey{
privateString name;
publicAllergey(String name){
this.name = name;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
@Override
publicString toString(){
return"Allergy "+ name;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Doctor.javacs320_final_pr
oject_code/medicalApplication/src/main/java/medical/com/medi
calApplication/model/Doctor.javapackage medical.com.medical
Application.model;
/**
*
* This class represents the Doctor data model in the system
*
*/
publicclassDoctor{
privateString name;
privateString id;
publicDoctor(String name,String id){
super();
this.name = name;
this.id = id;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
publicString getId(){
return id;
}
publicvoid setId(String id){
this.id = id;
}
@Override
publicString toString(){
return"Doctor Name:"+ name +" ID: "+id;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Employee.javacs320_final
_project_code/medicalApplication/src/main/java/medical/com/m
edicalApplication/model/Employee.javapackage medical.com.m
edicalApplication.model;
/**
*
* This class represents the employee model in the system
*
*/
publicclassEmployee{
privateString name;
privateString id;
privateString password;
publicEmployee(String name,String id){
super();
this.name = name;
this.id = id;
this.password ="Open";
}
publicString getName(){
return name;
}
publicString getId(){
return id;
}
publicString getPassword(){
return password;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/MedicalRecord.javacs320_
final_project_code/medicalApplication/src/main/java/medical/c
om/medicalApplication/model/MedicalRecord.javapackage medi
cal.com.medicalApplication.model;
/**
*
*
* This class represents a medical record model in the system
*
*/
publicclassMedicalRecord{
privatePatient patient;
privatePatientHistory history;
publicMedicalRecord(Patient patient){
super();
this.patient = patient;
this.history =newPatientHistory();
}
publicPatient getPatient(){
return patient;
}
publicPatientHistory getHistory(){
return history;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Medication.javacs320_fina
l_project_code/medicalApplication/src/main/java/medical/com/
medicalApplication/model/Medication.javapackage medical.com
.medicalApplication.model;
/**
*
* This class represents the mediation model in the system
*
*/
publicclassMedication{
privateString name;
privateString startDate;
privateString endDate;
privateString dose;
publicMedication(String name,String startDate,String endDate,S
tring dose){
super();
this.name = name;
this.startDate = startDate;
this.endDate = endDate;
this.dose = dose;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
publicString getStartDate(){
return startDate;
}
publicvoid setStartDate(String startDate){
this.startDate = startDate;
}
publicString getEndDate(){
return endDate;
}
publicvoid setEndDate(String endDate){
this.endDate = endDate;
}
publicString getDose(){
return dose;
}
publicvoid setDose(String dose){
this.dose = dose;
}
@Override
publicString toString(){
return"Medication:"+name +" Start Date: "+ startDate +" End D
ate: "+endDate+" Dose: "+dose;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Patient.javacs320_final_pr
oject_code/medicalApplication/src/main/java/medical/com/medi
calApplication/model/Patient.javapackage medical.com.medical
Application.model;
/**
*
* This class represents a patient model in the system
*
*/
publicclassPatient{
privateString name;
privateString id;
publicPatient(String name,String id){
super();
this.name = name;
this.id = id;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
publicString getId(){
return id;
}
publicvoid setId(String id){
this.id = id;
}
@Override
publicString toString(){
return"Patient Name: "+name+" ID: "+id;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/PatientHistory.javacs320_
final_project_code/medicalApplication/src/main/java/medical/c
om/medicalApplication/model/PatientHistory.javapackage medi
cal.com.medicalApplication.model;
import java.util.ArrayList;
import java.util.List;
/**
*
* This class represents a patient history model in the system
*
*/
publicclassPatientHistory{
privateList<Treatment> treatments;
privateList<Medication> medications;
privateList<Allergey> allergy;
publicPatientHistory(){
this.treatments =newArrayList<Treatment>();
this.medications =newArrayList<Medication>();
this.allergy =newArrayList<Allergey>();
}
publicvoid addTreatment(Treatment treatment){
treatments.add(treatment);
}
publicvoid addAllergy(Allergey allegry){
allergy.add(allegry);
}
publicvoid addMedication(Medication medication){
if(treatments !=null){
medications.add(medication);
}
}
publicList<Allergey> getAlergies(){
return allergy;
}
publicList<Treatment> getAllTreatments(){
return treatments;
}
publicList<Medication> getAllMedications(){
return medications;
}
}
cs320_final_project_code/medicalApplication/src/main/java/me
dical/com/medicalApplication/model/Treatment.javacs320_final
_project_code/medicalApplication/src/main/java/medical/com/m
edicalApplication/model/Treatment.javapackage medical.com.m
edicalApplication.model;
/**
*
* This class represents a treatment model in the system.
*
*/
publicclassTreatment{
privateString treatmentDate;
privateString diagnose;
privateString description;
publicTreatment(String treatmentDate,String diagnose,String de
scription){
super();
this.treatmentDate = treatmentDate;
…

More Related Content

Similar to cs320_final_project_codemedicalApplication.classpathcs320_.docx

Presentacion clean code
Presentacion clean codePresentacion clean code
Presentacion clean code
IBM
 
Question IYou are going to use the semaphores for process sy.docx
Question IYou are going to use the semaphores for process sy.docxQuestion IYou are going to use the semaphores for process sy.docx
Question IYou are going to use the semaphores for process sy.docx
audeleypearl
 
#18.스프링프레임워크 & 마이바티스 (Spring Framework, MyBatis)_국비지원IT학원/실업자/재직자환급교육/자바/스프링/...
#18.스프링프레임워크 & 마이바티스 (Spring Framework, MyBatis)_국비지원IT학원/실업자/재직자환급교육/자바/스프링/...#18.스프링프레임워크 & 마이바티스 (Spring Framework, MyBatis)_국비지원IT학원/실업자/재직자환급교육/자바/스프링/...
#18.스프링프레임워크 & 마이바티스 (Spring Framework, MyBatis)_국비지원IT학원/실업자/재직자환급교육/자바/스프링/...
탑크리에듀(구로디지털단지역3번출구 2분거리)
 
.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx
.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx
.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx
mercysuttle
 
Building Modern Apps using Android Architecture Components
Building Modern Apps using Android Architecture ComponentsBuilding Modern Apps using Android Architecture Components
Building Modern Apps using Android Architecture Components
Hassan Abid
 
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docxMorgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
gilpinleeanna
 
Assignment #2.classpathAssignment #2.project Assig.docx
Assignment #2.classpathAssignment #2.project  Assig.docxAssignment #2.classpathAssignment #2.project  Assig.docx
Assignment #2.classpathAssignment #2.project Assig.docx
fredharris32
 
SQLite Database Tutorial In Android
SQLite Database Tutorial In AndroidSQLite Database Tutorial In Android
SQLite Database Tutorial In Android
Android 5
 
Sqladria 2009 SRC
Sqladria 2009 SRCSqladria 2009 SRC
Sqladria 2009 SRC
tepsum
 
Total Compensationbuild.xml Builds, tests, and runs th.docx
Total Compensationbuild.xml      Builds, tests, and runs th.docxTotal Compensationbuild.xml      Builds, tests, and runs th.docx
Total Compensationbuild.xml Builds, tests, and runs th.docx
turveycharlyn
 
Ten useful JavaScript tips & best practices
Ten useful JavaScript tips & best practicesTen useful JavaScript tips & best practices
Ten useful JavaScript tips & best practices
Ankit Rastogi
 
JPA 2.0
JPA 2.0JPA 2.0
Spring hibernate jsf_primefaces_intergration
Spring hibernate jsf_primefaces_intergrationSpring hibernate jsf_primefaces_intergration
Spring hibernate jsf_primefaces_intergration
Carlos Junior Caso Casimiro
 
Bring the fun back to java
Bring the fun back to javaBring the fun back to java
Bring the fun back to java
ciklum_ods
 
Zend Framework 1.9 Setup & Using Zend_Tool
Zend Framework 1.9 Setup & Using Zend_ToolZend Framework 1.9 Setup & Using Zend_Tool
Zend Framework 1.9 Setup & Using Zend_Tool
Gordon Forsythe
 
JSUG - Google Guice by Jan Zarnikov
JSUG - Google Guice by Jan ZarnikovJSUG - Google Guice by Jan Zarnikov
JSUG - Google Guice by Jan Zarnikov
Christoph Pickl
 
spring-tutorial
spring-tutorialspring-tutorial
spring-tutorial
Arjun Shanka
 
Struts database access
Struts database accessStruts database access
Struts database access
Abass Ndiaye
 
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docxAlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
galerussel59292
 
Zend Framework 2 - Basic Components
Zend Framework 2  - Basic ComponentsZend Framework 2  - Basic Components
Zend Framework 2 - Basic Components
Mateusz Tymek
 

Similar to cs320_final_project_codemedicalApplication.classpathcs320_.docx (20)

Presentacion clean code
Presentacion clean codePresentacion clean code
Presentacion clean code
 
Question IYou are going to use the semaphores for process sy.docx
Question IYou are going to use the semaphores for process sy.docxQuestion IYou are going to use the semaphores for process sy.docx
Question IYou are going to use the semaphores for process sy.docx
 
#18.스프링프레임워크 & 마이바티스 (Spring Framework, MyBatis)_국비지원IT학원/실업자/재직자환급교육/자바/스프링/...
#18.스프링프레임워크 & 마이바티스 (Spring Framework, MyBatis)_국비지원IT학원/실업자/재직자환급교육/자바/스프링/...#18.스프링프레임워크 & 마이바티스 (Spring Framework, MyBatis)_국비지원IT학원/실업자/재직자환급교육/자바/스프링/...
#18.스프링프레임워크 & 마이바티스 (Spring Framework, MyBatis)_국비지원IT학원/실업자/재직자환급교육/자바/스프링/...
 
.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx
.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx
.settings.jsdtscope.settingsorg.eclipse.jdt.core.prefs.docx
 
Building Modern Apps using Android Architecture Components
Building Modern Apps using Android Architecture ComponentsBuilding Modern Apps using Android Architecture Components
Building Modern Apps using Android Architecture Components
 
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docxMorgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
 
Assignment #2.classpathAssignment #2.project Assig.docx
Assignment #2.classpathAssignment #2.project  Assig.docxAssignment #2.classpathAssignment #2.project  Assig.docx
Assignment #2.classpathAssignment #2.project Assig.docx
 
SQLite Database Tutorial In Android
SQLite Database Tutorial In AndroidSQLite Database Tutorial In Android
SQLite Database Tutorial In Android
 
Sqladria 2009 SRC
Sqladria 2009 SRCSqladria 2009 SRC
Sqladria 2009 SRC
 
Total Compensationbuild.xml Builds, tests, and runs th.docx
Total Compensationbuild.xml      Builds, tests, and runs th.docxTotal Compensationbuild.xml      Builds, tests, and runs th.docx
Total Compensationbuild.xml Builds, tests, and runs th.docx
 
Ten useful JavaScript tips & best practices
Ten useful JavaScript tips & best practicesTen useful JavaScript tips & best practices
Ten useful JavaScript tips & best practices
 
JPA 2.0
JPA 2.0JPA 2.0
JPA 2.0
 
Spring hibernate jsf_primefaces_intergration
Spring hibernate jsf_primefaces_intergrationSpring hibernate jsf_primefaces_intergration
Spring hibernate jsf_primefaces_intergration
 
Bring the fun back to java
Bring the fun back to javaBring the fun back to java
Bring the fun back to java
 
Zend Framework 1.9 Setup & Using Zend_Tool
Zend Framework 1.9 Setup & Using Zend_ToolZend Framework 1.9 Setup & Using Zend_Tool
Zend Framework 1.9 Setup & Using Zend_Tool
 
JSUG - Google Guice by Jan Zarnikov
JSUG - Google Guice by Jan ZarnikovJSUG - Google Guice by Jan Zarnikov
JSUG - Google Guice by Jan Zarnikov
 
spring-tutorial
spring-tutorialspring-tutorial
spring-tutorial
 
Struts database access
Struts database accessStruts database access
Struts database access
 
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docxAlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
 
Zend Framework 2 - Basic Components
Zend Framework 2  - Basic ComponentsZend Framework 2  - Basic Components
Zend Framework 2 - Basic Components
 

More from mydrynan

CSIA 413 Cybersecurity Policy, Plans, and Programs.docx
CSIA 413 Cybersecurity Policy, Plans, and Programs.docxCSIA 413 Cybersecurity Policy, Plans, and Programs.docx
CSIA 413 Cybersecurity Policy, Plans, and Programs.docx
mydrynan
 
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docxCSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
mydrynan
 
CSI Paper Grading Rubric- (worth a possible 100 points) .docx
CSI Paper Grading Rubric- (worth a possible 100 points)   .docxCSI Paper Grading Rubric- (worth a possible 100 points)   .docx
CSI Paper Grading Rubric- (worth a possible 100 points) .docx
mydrynan
 
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docxCSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
mydrynan
 
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docxCSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
mydrynan
 
CSE422 Section 002 – Computer Networking Fall 2018 Ho.docx
CSE422 Section 002 – Computer Networking Fall 2018  Ho.docxCSE422 Section 002 – Computer Networking Fall 2018  Ho.docx
CSE422 Section 002 – Computer Networking Fall 2018 Ho.docx
mydrynan
 
CSCI  132  Practical  Unix  and  Programming   .docx
CSCI  132  Practical  Unix  and  Programming   .docxCSCI  132  Practical  Unix  and  Programming   .docx
CSCI  132  Practical  Unix  and  Programming   .docx
mydrynan
 
CSCI 714 Software Project Planning and EstimationLec.docx
CSCI 714 Software Project Planning and EstimationLec.docxCSCI 714 Software Project Planning and EstimationLec.docx
CSCI 714 Software Project Planning and EstimationLec.docx
mydrynan
 
CSCI 561Research Paper Topic Proposal and Outline Instructions.docx
CSCI 561Research Paper Topic Proposal and Outline Instructions.docxCSCI 561Research Paper Topic Proposal and Outline Instructions.docx
CSCI 561Research Paper Topic Proposal and Outline Instructions.docx
mydrynan
 
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docxCSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
mydrynan
 
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docxCryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
mydrynan
 
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docxCSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
mydrynan
 
CSCE 1040 Homework 2 For this assignment we are going to .docx
CSCE 1040 Homework 2  For this assignment we are going to .docxCSCE 1040 Homework 2  For this assignment we are going to .docx
CSCE 1040 Homework 2 For this assignment we are going to .docx
mydrynan
 
CSCE509–Spring2019Assignment3updated01May19DU.docx
CSCE509–Spring2019Assignment3updated01May19DU.docxCSCE509–Spring2019Assignment3updated01May19DU.docx
CSCE509–Spring2019Assignment3updated01May19DU.docx
mydrynan
 
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docxCSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
mydrynan
 
CSCE 3110 Data Structures & Algorithms Summer 2019 1 of .docx
CSCE 3110 Data Structures & Algorithms Summer 2019   1 of .docxCSCE 3110 Data Structures & Algorithms Summer 2019   1 of .docx
CSCE 3110 Data Structures & Algorithms Summer 2019 1 of .docx
mydrynan
 
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docxCSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
mydrynan
 
CSC-321 Final Writing Assignment In this assignment, you .docx
CSC-321 Final Writing Assignment  In this assignment, you .docxCSC-321 Final Writing Assignment  In this assignment, you .docx
CSC-321 Final Writing Assignment In this assignment, you .docx
mydrynan
 
Cryptography is the application of algorithms to ensure the confiden.docx
Cryptography is the application of algorithms to ensure the confiden.docxCryptography is the application of algorithms to ensure the confiden.docx
Cryptography is the application of algorithms to ensure the confiden.docx
mydrynan
 
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docxCSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
mydrynan
 

More from mydrynan (20)

CSIA 413 Cybersecurity Policy, Plans, and Programs.docx
CSIA 413 Cybersecurity Policy, Plans, and Programs.docxCSIA 413 Cybersecurity Policy, Plans, and Programs.docx
CSIA 413 Cybersecurity Policy, Plans, and Programs.docx
 
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docxCSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
 
CSI Paper Grading Rubric- (worth a possible 100 points) .docx
CSI Paper Grading Rubric- (worth a possible 100 points)   .docxCSI Paper Grading Rubric- (worth a possible 100 points)   .docx
CSI Paper Grading Rubric- (worth a possible 100 points) .docx
 
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docxCSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
 
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docxCSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
 
CSE422 Section 002 – Computer Networking Fall 2018 Ho.docx
CSE422 Section 002 – Computer Networking Fall 2018  Ho.docxCSE422 Section 002 – Computer Networking Fall 2018  Ho.docx
CSE422 Section 002 – Computer Networking Fall 2018 Ho.docx
 
CSCI  132  Practical  Unix  and  Programming   .docx
CSCI  132  Practical  Unix  and  Programming   .docxCSCI  132  Practical  Unix  and  Programming   .docx
CSCI  132  Practical  Unix  and  Programming   .docx
 
CSCI 714 Software Project Planning and EstimationLec.docx
CSCI 714 Software Project Planning and EstimationLec.docxCSCI 714 Software Project Planning and EstimationLec.docx
CSCI 714 Software Project Planning and EstimationLec.docx
 
CSCI 561Research Paper Topic Proposal and Outline Instructions.docx
CSCI 561Research Paper Topic Proposal and Outline Instructions.docxCSCI 561Research Paper Topic Proposal and Outline Instructions.docx
CSCI 561Research Paper Topic Proposal and Outline Instructions.docx
 
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docxCSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
 
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docxCryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
 
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docxCSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
 
CSCE 1040 Homework 2 For this assignment we are going to .docx
CSCE 1040 Homework 2  For this assignment we are going to .docxCSCE 1040 Homework 2  For this assignment we are going to .docx
CSCE 1040 Homework 2 For this assignment we are going to .docx
 
CSCE509–Spring2019Assignment3updated01May19DU.docx
CSCE509–Spring2019Assignment3updated01May19DU.docxCSCE509–Spring2019Assignment3updated01May19DU.docx
CSCE509–Spring2019Assignment3updated01May19DU.docx
 
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docxCSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
 
CSCE 3110 Data Structures & Algorithms Summer 2019 1 of .docx
CSCE 3110 Data Structures & Algorithms Summer 2019   1 of .docxCSCE 3110 Data Structures & Algorithms Summer 2019   1 of .docx
CSCE 3110 Data Structures & Algorithms Summer 2019 1 of .docx
 
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docxCSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
 
CSC-321 Final Writing Assignment In this assignment, you .docx
CSC-321 Final Writing Assignment  In this assignment, you .docxCSC-321 Final Writing Assignment  In this assignment, you .docx
CSC-321 Final Writing Assignment In this assignment, you .docx
 
Cryptography is the application of algorithms to ensure the confiden.docx
Cryptography is the application of algorithms to ensure the confiden.docxCryptography is the application of algorithms to ensure the confiden.docx
Cryptography is the application of algorithms to ensure the confiden.docx
 
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docxCSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
 

Recently uploaded

Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
Krassimira Luka
 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Henry Hollis
 
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGHKHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
shreyassri1208
 
BPSC-105 important questions for june term end exam
BPSC-105 important questions for june term end examBPSC-105 important questions for june term end exam
BPSC-105 important questions for june term end exam
sonukumargpnirsadhan
 
The basics of sentences session 7pptx.pptx
The basics of sentences session 7pptx.pptxThe basics of sentences session 7pptx.pptx
The basics of sentences session 7pptx.pptx
heathfieldcps1
 
How to Setup Default Value for a Field in Odoo 17
How to Setup Default Value for a Field in Odoo 17How to Setup Default Value for a Field in Odoo 17
How to Setup Default Value for a Field in Odoo 17
Celine George
 
220711130088 Sumi Basak Virtual University EPC 3.pptx
220711130088 Sumi Basak Virtual University EPC 3.pptx220711130088 Sumi Basak Virtual University EPC 3.pptx
220711130088 Sumi Basak Virtual University EPC 3.pptx
Kalna College
 
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptxCapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapitolTechU
 
Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)
nitinpv4ai
 
MDP on air pollution of class 8 year 2024-2025
MDP on air pollution of class 8 year 2024-2025MDP on air pollution of class 8 year 2024-2025
MDP on air pollution of class 8 year 2024-2025
khuleseema60
 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
RidwanHassanYusuf
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
Nguyen Thanh Tu Collection
 
Electric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger HuntElectric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger Hunt
RamseyBerglund
 
CIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdfCIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdf
blueshagoo1
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
haiqairshad
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
Jyoti Chand
 
SWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptxSWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptx
zuzanka
 
THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...
THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...
THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...
indexPub
 
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
Kalna College
 
A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
Steve Thomason
 

Recently uploaded (20)

Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
 
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGHKHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
 
BPSC-105 important questions for june term end exam
BPSC-105 important questions for june term end examBPSC-105 important questions for june term end exam
BPSC-105 important questions for june term end exam
 
The basics of sentences session 7pptx.pptx
The basics of sentences session 7pptx.pptxThe basics of sentences session 7pptx.pptx
The basics of sentences session 7pptx.pptx
 
How to Setup Default Value for a Field in Odoo 17
How to Setup Default Value for a Field in Odoo 17How to Setup Default Value for a Field in Odoo 17
How to Setup Default Value for a Field in Odoo 17
 
220711130088 Sumi Basak Virtual University EPC 3.pptx
220711130088 Sumi Basak Virtual University EPC 3.pptx220711130088 Sumi Basak Virtual University EPC 3.pptx
220711130088 Sumi Basak Virtual University EPC 3.pptx
 
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptxCapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
 
Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)
 
MDP on air pollution of class 8 year 2024-2025
MDP on air pollution of class 8 year 2024-2025MDP on air pollution of class 8 year 2024-2025
MDP on air pollution of class 8 year 2024-2025
 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
 
Electric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger HuntElectric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger Hunt
 
CIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdfCIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdf
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
 
SWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptxSWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptx
 
THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...
THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...
THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...
 
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
 
A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
 

cs320_final_project_codemedicalApplication.classpathcs320_.docx