public ActionResult Index(DateTime?startTime, DateTime?endTime, EmployeeGroup employeeGroup)
        {
            IList <CheckHistory> entities = _checkHistoryDao.GetCheckHistoryDao()
                                            .GetList(employeeGroup, startTime ?? DateTime.Now,
                                                     endTime ?? DateTime.Now);

            return(View(entities));
        }