Strict done!!

This commit is contained in:
2020-11-23 16:42:54 +05:30
parent af343cb7f9
commit afe746ecdc
142 changed files with 1258 additions and 907 deletions
@@ -5,9 +5,14 @@ export class EmployeeAttendanceItem {
attendanceType: AttendanceType;
prints: string;
hoursWorked: string;
fullDay?: boolean;
fullDay: boolean;
public constructor(init?: Partial<EmployeeAttendanceItem>) {
this.date = '';
this.attendanceType = new AttendanceType();
this.prints = '';
this.hoursWorked = '';
this.fullDay = true;
Object.assign(this, init);
}
}