// exemple go to écran de création
/**
 * gestion du new
 * @param a_event
 */
public onNewClick(a_event : MouseEvent) : boolean {
  a_event.preventDefault();
  this.coreServicesProvider.urlService.goToCreate(undefined,undefined,a_event);
  return true;
}

// exemple go to écran de modification
this.coreServicesProvider.urlService.goToUpdate(l_params,undefined,a_event);

// go to simple
this.coreServicesProvider.urlService.go(this.params.futureState.state,this.params.futureState.params,
          undefined,a_event);
this.coreServicesProvider.urlService.go(this.coreServicesProvider.routerGlobals.current.name,{id_ProfilUserClientR:a_result.body.data.id},{reload: true},a_event);