public class ControllerProfessionView extends ControllerEntityView {
public ControllerProfessionView() throws ExceptionDAO {
super();
this.entityList = this.facadeDB.getProfessionBroker().getAllProfessions();
this.tableModel = new ProfessionTableModel(this.entityList);
this.entityName = "Profesión";
this.pluralEntity = "Profesiones";
this.controllerEntityEdition = new ControllerProfessionEdition();
}