You are implementing an ASP.NET MVC 2 Web application that contains the following class.  Public Class DepartmentControllerInherits Controller   Shared departments As List(Of Department) =  New List(Of Department)   Function Index() As ActionResultReturn View(departments)End Function   Function Details(ByVal id As Integer) As ActionResultReturn View(departments.Find(Function(x) x.ID = id))End Function   Function ListEmployees(ByVal d As Department) As ActionResultDim employees As List(Of Employee) = GetEmployees(d)Return View (employees)End FunctionEnd Class 
A、<%= Html.Action("ListEmployees", Model) %>
B、<%= Html.ActionLink("ListEmployees", "Department", "DepartmentController") %>
C、<% Html.RenderPartial("ListEmployees", Model) %>
D、<%= Html.DisplayForModel("ListEmployees") %>