public TimeClockUnitOfWork(TimeClockContext context)
 {
     _context = context;
     Employees = new EmployeeRepository(_context);
     Shifts = new ShiftRepository(_context);
     IncompleteShifts = new IncompleteShiftRepository(_context);
 }
 public TimeClockUnitOfWork(TimeClockContext context)
 {
     _context         = context;
     Employees        = new EmployeeRepository(_context);
     Shifts           = new ShiftRepository(_context);
     IncompleteShifts = new IncompleteShiftRepository(_context);
 }