You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
684 B
TypeScript
27 lines
684 B
TypeScript
import { Component, OnInit, Input, EventEmitter, Output } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-employee-information',
|
|
templateUrl: './employee-information.component.html',
|
|
styleUrls: ['./employee-information.component.scss'],
|
|
})
|
|
export class EmployeeInformationComponent implements OnInit {
|
|
|
|
public userImage: any = '../assets/imgs/profile.png';
|
|
@Input() name: string;
|
|
@Input() title: string;
|
|
@Input() employeeImage: string;
|
|
@Input() employeePhoneNumber: string;
|
|
// tslint:disable-next-line: no-output-on-prefix
|
|
@Output() onGetDetails = new EventEmitter();
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {}
|
|
|
|
getDetails() {
|
|
this.onGetDetails.emit();
|
|
}
|
|
|
|
}
|