* @param passedDiseaseType
* @throws SQLException
*/
public static void doBusiness(DiseaseType passedDiseaseType) throws SQLException {
int disease_id = passedDiseaseType.getDiseaseTypeID();
Disease holdDisease = new Disease(disease_id);
//DiseaseDAO dd = new DiseaseDAO();
//holdDisease = dd.getByDiseaseID(disease_id_pk);
String diseaseType = holdDisease.getName();
String description = holdDisease.getDescription();
float infectChance = holdDisease.getInfectChance();
float spreadChance = holdDisease.getSpreadChance();
ArrayList<Integer> infectSpeciesList = new ArrayList<Integer>();
//DiseaseInfectsAnimalDAO dia = new DiseaseInfectsAnimalDAO();
//infectSpeciesList = (ArrayList)dia.getAnimalIDByDiseaseID(disease_id_pk);
float deathRate = holdDisease.getDeathRate();
float healChance = holdDisease.getHealChance();
passedDiseaseType.setDiseaseType(diseaseType);
passedDiseaseType.setDescription(description);
passedDiseaseType.setInfectChance(infectChance);
passedDiseaseType.setSpreadChance(spreadChance);
passedDiseaseType.setInfectSpecies(infectSpeciesList);