Let's say my presenter obtains a list of my Person class from my repository and I want to bind information from that list to a ListBox or DataGridView in a passive view.
Since the view should not know about the model, would I be correct in assuming I would need to convert that list into a List< string > in my presenter and pass that to the view to bind to a ListBox?
What should I pass to the view if I wanted to populate a DataGridView, a List<List< string >> perhaps?
Would it be acceptable to have a model specifically made for the view to bind to, where the presenter converted the model from the repository into a different model for the view?
Example Person model:
public class PersonModel
{
public int PersonId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string MiddleInitial { get; set; }
}