private void newRemovedImplantDevice() { PatientCharacteristicVoCollection voCharColl = listCharacteristic(); if(voCharColl.size() == 0) engine.showMessage("No Devices Exist"); GenForm.grdImpDevRemRow row = null; for(int i = 0 ; i < voCharColl.size() ; i++) { if(i == 0) row = form.grdImpDevRem().getRows().newRow(); row.getColImplDevRemoved().newRow(voCharColl.get(i), voCharColl.get(i).getImplantedDevice()); } }
private void newRemoved() { PatientCharacteristicVoCollection voCharColl = listCharacteristic(); if(voCharColl.size() == 0) { engine.showMessage("No Devices Exist"); } GenForm.grdImpDevRemRow row = null; for(int i=0;i<voCharColl.size();i++) { if(i == 0) row = form.grdImpDevRem().getRows().newRow(); row.getColumn1().newRow(voCharColl.get(i), voCharColl.get(i).getImplantedDevice()); } }
private PatientCharacteristicVoCollection listCharacteristic() { return domain.listCharchteristic(form.getLocalContext().getpatientProcedure(), form.getGlobalContext().Core.getPatientShort()); }
private PatientCharacteristicVoCollection listCharacteristic() { return domain.listCharchteristic(form.getGlobalContext().Core.getPatientShort(), form.getLocalContext().getSurgicalOperation()); }