I need to execute the a function in case the ListPatients function is successful, where I should add it
this.dataApiService.ListPatients()
.subscribe((
data : PacienteInterface) =>(this.pacienteLista = data),
error => this.mensajeError(error)
);