* @throws ExceptionDAO
*/
public ControllerViewSportByPatient(JXTable table, Patient patient, boolean editing){
super(table, patient, editing);
this.entityList = new ArrayList(this.patient.getSportsPatient());
this.tableModel = new SportsByPatientTableModel(this.entityList);
this.table.setModel(this.tableModel);
this.controllerEntityEdition = new ControllerEditionSportByPatient(patient);
}