* @throws ExceptionDAO
*/
public ControllerViewMedicineByPatient(JXTable table, Patient patient, boolean editing) throws ExceptionDAO {
super(table, patient, editing);
this.entityList = this.entityList = new ArrayList(this.patient.getMedicinesPatient());
this.tableModel = new MedicinesByPatienteTableModel(this.entityList);
this.table.setModel(this.tableModel);
this.controllerEntityEdition = new ControllerEditionMedicineByPatient(patient);
}