From: Kai Moritz Date: Sat, 2 May 2020 19:35:54 +0000 (+0200) Subject: 4: Add Services X-Git-Url: https://juplo.de/gitweb/?p=examples%2Fangular-tour-of-heroes;a=commitdiff_plain;h=cdbcd5578c991169816c9b621c5a571ffdaefeb8 4: Add Services e) Show messages - Inject it into the HeroService --- diff --git a/src/app/hero.service.ts b/src/app/hero.service.ts index a59d76b..d0801f3 100644 --- a/src/app/hero.service.ts +++ b/src/app/hero.service.ts @@ -2,6 +2,7 @@ import { Injectable } from '@angular/core'; import { Observable, of } from 'rxjs'; import { Hero } from './hero'; import { HEROES } from './mock-heroes'; +import { MessageService } from './message.service'; @Injectable({ @@ -9,7 +10,7 @@ import { HEROES } from './mock-heroes'; }) export class HeroService { - constructor() { } + constructor(private messageService : MessageService) { } getHeroes() : Observable { return of(HEROES);