package com.ppk.covidcheck.service; | |
import com.ppk.covidcheck.model.Patient; | |
import com.ppk.covidcheck.model.Result; | |
import com.ppk.covidcheck.model.Symptomps; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.stereotype.Component; | |
@Component | |
public class EvaluatePatientForCorona { | |
public Result evaluatePatient(Patient patient){ | |
Result result=new Result(); | |
Symptomps symptomps=patient.getSymptomps(); | |
if(symptomps.isHasBreathingDifficulty() && symptomps.isHasCough() && symptomps.isHasFever() && symptomps.isHasTiredness()) | |
{ | |
result.setName(patient.getFirstName()); | |
result.setResult("VERY LIKELY"); | |
return result; | |
} | |
else { | |
result.setName(patient.getFirstName()); | |
result.setResult("NOT LIKELY"); | |
return result; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment