EchoTex_Payroll/HRM.UI/ClientApp/src/app/payroll-ot/bonus-approval-self-service/bonus-approval-self-service.component.ts
2024-10-14 10:01:49 +06:00

44 lines
576 B
TypeScript

import {Component, OnInit} from '@angular/core';
@Component({
selector: 'app-bonus-approval-self-service',
templateUrl: './bonus-approval-self-service.component.html',
styleUrls: ['./bonus-approval-self-service.component.css']
})
export class BonusApprovalSelfServiceComponent implements OnInit {
constructor() {
}
ngOnInit() {
}
forPermanent() {
}
forNonPermanent() {
}
bonusRegister() {
}
forNonPermanentExcel() {
}
forPermanentExcel() {
}
onApprove() {
}
onReject() {
}
}