//Action To find Shift for New Work
        public ActionResult FindShiftForNewWork(AssignShiftEmployeesViewModel viewModel)
        {
            var datetime     = viewModel.Datetime;
            var departmentId = _departmentRepository.GetDepartmentId(viewModel);
            var shiftTypeId  = viewModel.ShiftTypeId;

            var shiftId = _shiftRepository.GetShiftIdByDayTimeAndDepartmentId(datetime, departmentId, shiftTypeId);

            TempData["ID"] = shiftId;
            //TempData["DepartmentID"] = departmentId;
            return(RedirectToAction("NewWork"));
        }