import { Component } from '@angular/core'; import { CalculateService } from './services/calculate.service' @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { title = 'Test Environment for Components, Filter, Services and more'; persons = [ 'Alex', 'Jack', 'Morgan', 'Mary', 'Chris', 'Tina Maria' ]; nav = [ { id: 1, text: 'Hello', url: '#' }, { id: 2, text: 'Morning', url: '#top' }, { id: 3, text: 'Evening', url: '#test' } ]; sum: number = 0; constructor(calculate: CalculateService) { this.sum = calculate.sum(1, 2, 3, 4, 5) } }