单项选择题YouareimplementinganASP.NETMVC2Webapplicationthatcontainsthefollowingclass.PublicClassDepartmentControllerInheritsControllerShareddepartmentsAsList(OfDepartment)=NewList(OfDepartment)FunctionIndex()AsActionResultReturnView(departments)EndFunctionFunctionDetails(ByValidAsInteger)AsActionResultReturnView(departments.Find(Function(x)x.ID=id))EndFunctionFunctionListEmployees(ByValdAsDepartment)AsActionResultDimemployeesAsList(OfEmployee)=GetEmployees(d)ReturnView(employees)EndFunctionEndClassYoucreateastronglytypedviewthatdisplaysdetailsforaDepartmentinstance.Youwanttheviewtoalsoincludealistingofdepartmentemployees.YouneedtowriteacodesegmentthatwillcalltheListEmployeesactionmethodandoutputtheresultsinplace.Whichcodesegmentshouldyouuse?()
A.<%= Html.Action("ListEmployees", Model) %>
B.<%= Html.ActionLink("ListEmployees", "Department", "DepartmentController") %>
C.<% Html.RenderPartial("ListEmployees", Model) %>
D.<%= Html.DisplayForModel("ListEmployees") %>