public SelectList (System.Collections.IEnumerable items,
string dataValueField,
string dataTextField,
object selectedValue);
new SelectList(_context.Department,
nameof(Department.DepartmentID),
nameof(Department.Name),
person.DepartmentID);