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

DOCX
CSIA 413 Cybersecurity Policy, Plans, and Programs.docx
DOCX
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
DOCX
CSI Paper Grading Rubric- (worth a possible 100 points) .docx
DOCX
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
DOCX
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
DOCX
CSE422 Section 002 – Computer Networking Fall 2018 Ho.docx
DOCX
CSCI  132  Practical  Unix  and  Programming   .docx
DOCX
CSCI 714 Software Project Planning and EstimationLec.docx
CSIA 413 Cybersecurity Policy, Plans, and Programs.docx
CSIS 100CSIS 100 - Discussion Board Topic #1One of the object.docx
CSI Paper Grading Rubric- (worth a possible 100 points) .docx
CSIA 413 Cybersecurity Policy, Plans, and ProgramsProject #4 IT .docx
CSI 170 Week 3 AssingmentAssignment 1 Cyber Computer CrimeAss.docx
CSE422 Section 002 – Computer Networking Fall 2018 Ho.docx
CSCI  132  Practical  Unix  and  Programming   .docx
CSCI 714 Software Project Planning and EstimationLec.docx

More from mydrynan (20)

DOCX
CSCI 561Research Paper Topic Proposal and Outline Instructions.docx
DOCX
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
DOCX
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
DOCX
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
DOCX
CSCE 1040 Homework 2 For this assignment we are going to .docx
DOCX
CSCE509–Spring2019Assignment3updated01May19DU.docx
DOCX
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
DOCX
CSCE 3110 Data Structures & Algorithms Summer 2019 1 of .docx
DOCX
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
DOCX
CSC-321 Final Writing Assignment In this assignment, you .docx
DOCX
Cryptography is the application of algorithms to ensure the confiden.docx
DOCX
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
DOCX
Cryptography KeysCryptography provides confidentiality, inte.docx
DOCX
CSC-162 Final ProjectMedia LibraryCreate a program that will.docx
DOCX
CSC 240Lab 31) Update the specifications of the DeleteItem f.docx
DOCX
CSA CCM V3.0.1 CLOUD CONTROLS MATRIX VERSION 3.0.1Control DomainC.docx
DOCX
CS672 – System Engineering and Analysis Discussion 6 - 1192018.docx
DOCX
CSA CCM V3.0CLOUD CONTROLS MATRIX VERSION 3.0Control DomainCCM V3..docx
DOCX
CSB Hoeganaes Corporation Case Study 1Hoeganaes Corporatio.docx
DOCX
CS672 – System Engineering and Analysis Discussion 8 - 1123201.docx
CSCI 561Research Paper Topic Proposal and Outline Instructions.docx
CSCI 561 DB Standardized Rubric50 PointsCriteriaLevels of .docx
CryptographyLesson 10© Copyright 2012-2013 (ISC)², Inc. Al.docx
CSCI 352 - Digital Forensics Assignment #1 Spring 2020 .docx
CSCE 1040 Homework 2 For this assignment we are going to .docx
CSCE509–Spring2019Assignment3updated01May19DU.docx
CSCI 2033 Elementary Computational Linear Algebra(Spring 20.docx
CSCE 3110 Data Structures & Algorithms Summer 2019 1 of .docx
CSCI 340 Final Group ProjectNatalie Warden, Arturo Gonzalez, R.docx
CSC-321 Final Writing Assignment In this assignment, you .docx
Cryptography is the application of algorithms to ensure the confiden.docx
CSc3320 Assignment 6 Due on 24th April, 2013 Socket programming .docx
Cryptography KeysCryptography provides confidentiality, inte.docx
CSC-162 Final ProjectMedia LibraryCreate a program that will.docx
CSC 240Lab 31) Update the specifications of the DeleteItem f.docx
CSA CCM V3.0.1 CLOUD CONTROLS MATRIX VERSION 3.0.1Control DomainC.docx
CS672 – System Engineering and Analysis Discussion 6 - 1192018.docx
CSA CCM V3.0CLOUD CONTROLS MATRIX VERSION 3.0Control DomainCCM V3..docx
CSB Hoeganaes Corporation Case Study 1Hoeganaes Corporatio.docx
CS672 – System Engineering and Analysis Discussion 8 - 1123201.docx

Recently uploaded (20)

PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PPTX
GDM (1) (1).pptx small presentation for students
PDF
Classroom Observation Tools for Teachers
PPTX
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
Cell Structure & Organelles in detailed.
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PPTX
Cell Types and Its function , kingdom of life
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
O7-L3 Supply Chain Operations - ICLT Program
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
202450812 BayCHI UCSC-SV 20250812 v17.pptx
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Final Presentation General Medicine 03-08-2024.pptx
GDM (1) (1).pptx small presentation for students
Classroom Observation Tools for Teachers
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
Final Presentation General Medicine 03-08-2024.pptx
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Supply Chain Operations Speaking Notes -ICLT Program
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Cell Structure & Organelles in detailed.
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
2.FourierTransform-ShortQuestionswithAnswers.pdf
Cell Types and Its function , kingdom of life
Microbial diseases, their pathogenesis and prophylaxis
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
O7-L3 Supply Chain Operations - ICLT Program
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf

cs320_final_project_codemedicalApplication.classpathcs320_.docx