Broker System for Supercredit
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

18 Zeilen
513B

  1. import { EventEmitter, Injectable } from '@angular/core';
  2. import {HttpClient} from '@angular/common/http';
  3. import {AuthService} from './auth.service';
  4. import {ClonerService} from './clone.service';
  5. import {Router} from '@angular/router';
  6. @Injectable()
  7. export class MenuService {
  8. itemClicked = new EventEmitter <any>();
  9. constructor(auth: AuthService, private router: Router ){ }
  10. // display profile editing based on current user
  11. public showProfile(): void {
  12. this.router.navigate(['/profile']);
  13. }
  14. }