source: Farmatiko/ClientApp/src/app/korona/korona.component.ts@ 6f203af

Last change on this file since 6f203af was 5d02859, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Add new repo, service and controller

  • Property mode set to 100644
File size: 693 bytes
Line 
1import { Component, OnInit } from '@angular/core';
2import { DataService } from '../shared/data.service';
3import { IPandemic } from '../shared/interfaces';
4
5@Component({
6 selector: 'app-korona',
7 templateUrl: './korona.component.html',
8 styleUrls: ['./korona.component.css']
9})
10export class KoronaComponent implements OnInit {
11 public korona: IPandemic[];
12
13 constructor(private dataService: DataService) {
14
15 }
16
17 ngOnInit(): void {
18 this.dataService.getPandemic()
19 .subscribe((res: IPandemic[]) => {
20 this.korona = res;
21 console.log(this.korona);
22 },
23 (err: any) => console.log(err),
24 () => console.log('Pandemic data retrieved'));
25 }
26
27}
Note: See TracBrowser for help on using the repository browser.