public TemplateShift FindTemplateShiftById(int templateShiftId)
        {
            TemplateShift templateShift = _templateShiftRepository.FindTemplateShiftById(templateShiftId);

            templateShift.Employee = _employeeController.GetEmployeeById(templateShift.Employee.Id);
            return(templateShift);
        }