import { Component, OnInit, Input } from '@angular/core'; import { HealthFacilityService } from '../../../health-facility.service'; @Component({ selector: 'app-staff-statement', templateUrl: './staff-statement.component.html', styles: [] }) export class StaffStatementComponent implements OnInit { @Input() public headOfDepartment: any; @Input() public emoloyeeProfiles: any[] = []; constructor() { } ngOnInit() { } public dashifyCNIC(cnic: string) { return cnic[0] + cnic[1] + cnic[2] + cnic[3] + cnic[4] + '-' + cnic[5] + cnic[6] + cnic[7] + cnic[8] + cnic[9] + cnic[10] + cnic[11] + '-' + cnic[12]; } }