Example #1
0
        public ViewResult Detail(int EmployeeID)
        {
            var employees = _employeeContext.GetEmployeeDetails(EmployeeID);

            return(View("Create", employees));
        }