public ActionResult ShowLastLog(int employeeId) { Employee employee = new Employee(); employee.LastLog = homeService.CollectLastLog(employeeId); ModelState.Clear(); return(View("Index", employee)); }