public function redrawSearchEmployeeTimesheet()
 {
     //$employeeId = (int) Session::get("searchEmployeeId");
     //$currentDate = date('Y-m-d');
     if (Request::ajax()) {
         $timesheet = new Timesheet();
         $timesheetJsObjectPerMonth = $timesheet->getSearchTimesheetJsObjectPerMonth(Session::get('searchEmployeeId'), Session::get('dayDateArr'));
         return $timesheetJsObjectPerMonth;
     }
 }