Package systole.view.crud.patient.patientComponents.sugeries

Examples of systole.view.crud.patient.patientComponents.sugeries.ControllerViewSurgeryByPatient


        this.controllerViewClinicalInfoByPatient = new ControllerViewClinicalInfoByPatient(patientForm.getTableClinicalInfo(), (Patient) this.curretnEntity, this.isEditing());
        this.controllerViewFamilyBackground = new ControllerViewFamilyBackground(patientForm.getjTableBackground(), (Patient) this.curretnEntity, this.isEditing());
        this.controllerViewMedicineByPatient = new ControllerViewMedicineByPatient(patientForm.getTableMedicinesList(), (Patient) this.curretnEntity, this.isEditing());
        this.controllerViewPathologyByPatient = new ControllerViewPathologyByPatient(patientForm.getTablePathologiesList(), (Patient) this.curretnEntity, this.isEditing());
        this.controllerViewSportByPatient = new ControllerViewSportByPatient(patientForm.getTableSportsList(), (Patient) this.curretnEntity, this.isEditing());
        this.controllerViewSurgeryByPatient = new ControllerViewSurgeryByPatient(patientForm.getTableSurgeriesList(), (Patient) this.curretnEntity, this.isEditing());

        //Cargo el combo con la lista documentos
        patientForm.getjCmbIdentityType().removeAllItems();
        List<IdentityCardType> identityCardTypes = this.facadeDB.getIdentityCardBroker().getAllIdentityCardTypes();
        Iterator<IdentityCardType> itCardType = identityCardTypes.iterator();
View Full Code Here

TOP

Related Classes of systole.view.crud.patient.patientComponents.sugeries.ControllerViewSurgeryByPatient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.