import { Component, OnInit, Input } from '@angular/core'; import { DashboardService } from '../dashboard.service'; import { usp_HFTypeWiseReport_Result } from './hrmis-dashboard.class'; import { AuthenticationService } from '../../../_services/authentication.service'; import { aggregateBy } from '@progress/kendo-data-query'; import { Router } from '@angular/router'; import { RootService } from '../../../_services/root.service'; @Component({ selector: 'app-hrmis-dashboardhrmis', templateUrl: './hrmis-dashboard.component.html', styleUrls: ['./hrmis-dashboard.component.scss'] }) export class HrmisDashboardComponent implements OnInit { @Input() public currentUser: any; constructor(private _rootService: RootService, public _authService: AuthenticationService, private _dashboardService: DashboardService, private router: Router) { } ngOnInit() { } }