Strict done!!
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user