コード例 #1
0
        public ActionResult ShowLastLog(int employeeId)
        {
            Employee employee = new Employee();

            employee.LastLog = homeService.CollectLastLog(employeeId);
            ModelState.Clear();
            return(View("Index", employee));
        }