|
@@ -1,11 +1,13 @@
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
|
|
|
|
|
|
+import { SdmDihService } from '../sdm-dih.service';
|
|
|
|
|
+
|
|
|
@Component({
|
|
@Component({
|
|
|
selector: 'year-graph',
|
|
selector: 'year-graph',
|
|
|
templateUrl: 'year-graph.component.html',
|
|
templateUrl: 'year-graph.component.html',
|
|
|
})
|
|
})
|
|
|
export class YearGraphComponent implements OnInit {
|
|
export class YearGraphComponent implements OnInit {
|
|
|
- constructor() { }
|
|
|
|
|
|
|
+ constructor(private sdmDihService: SdmDihService) { }
|
|
|
|
|
|
|
|
ngOnInit() { }
|
|
ngOnInit() { }
|
|
|
}
|
|
}
|