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.
20 lines
553 B
TypeScript
20 lines
553 B
TypeScript
|
7 years ago
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
import { CommonService } from "src/app/hmg-common/services/common/common.service";
|
||
|
|
import { TranslatorService } from "src/app/hmg-common/services/translator/translator.service";
|
||
|
|
@Component({
|
||
|
|
selector: 'app-absence-confirm',
|
||
|
|
templateUrl: './absence-confirm.component.html',
|
||
|
|
styleUrls: ['./absence-confirm.component.scss'],
|
||
|
|
})
|
||
|
|
export class AbsenceConfirmComponent implements OnInit {
|
||
|
|
|
||
|
|
constructor(
|
||
|
|
public common: CommonService,
|
||
|
|
public ts: TranslatorService,
|
||
|
|
|
||
|
|
) { }
|
||
|
|
|
||
|
|
ngOnInit() {}
|
||
|
|
|
||
|
|
}
|