public AttendanceController(IFAttendance iFAttendance, IFWorkLog iFWorkLog)
 {
     _iFAttendance = iFAttendance;
     _iFWorkLog    = iFWorkLog;
 }
Example #2
0
 public AttendanceController(IFAttendance iFAttendance)
 {
     _iFAttendance = iFAttendance;
 }
Example #3
0
 public AttendanceController(IFAttendance iFAttendance, IFWorkLog iFWorkLog, IFEmployeeDepartment iFEmployeeDepartment)
 {
     _iFAttendance         = iFAttendance;
     _iFWorkLog            = iFWorkLog;
     _iFEmployeeDepartment = iFEmployeeDepartment;
 }