Ejemplo n.º 1
0
 public TimeAndAttendanceModule()
 {
     unitOfWork        = new UnitOfWork();
     TimeAndAttendance = new FluentTimeAndAttendance(unitOfWork);
     Schedule          = new FluentTimeAndAttendanceSchedule(unitOfWork);
     ScheduleToWork    = new FluentTimeAndAttendanceScheduledToWork(unitOfWork);
 }
Ejemplo n.º 2
0
 public TimeAndAttendanceScheduledToWorkModule()
 {
     unitOfWork      = new UnitOfWork();
     ScheduledToWork = new FluentTimeAndAttendanceScheduledToWork(unitOfWork);
     Schedule        = new FluentTimeAndAttendanceSchedule(unitOfWork);
     Employee        = new FluentEmployee(unitOfWork);
     Shift           = new FluentTimeAndAttendanceShift(unitOfWork);
     AddressBook     = new FluentAddressBook(unitOfWork);
     Udc             = new FluentUdc(unitOfWork);
 }