in angular/src/app/stage/stage-list/stage-list.component.ts [26:36]
searchEntities() {
this.stageService.list()
.subscribe(
(res: any) => {
this.entities = res;
},
(err: any) => {
this.formHelperService.showError('Errors.GenericError', null);
}
);
}