import { Component, OnInit } from '@angular/core'; import { YearService } from "../shared/year.service"; import { Title } from "@angular/platform-browser"; @Component({ selector: 'app-awardee-editor', templateUrl: './awardee-editor.component.html', styleUrls: ['./awardee-editor.component.css'] }) export class AwardeeEditorComponent implements OnInit { constructor( private yearProvider: YearService, private titleService: Title ) {} ngOnInit() { this.titleService.setTitle('Edit awardee'); } get years(): Array { return this.yearProvider.years; } }