I want to pass view model to my html helper/ I have tried
public static string GenerateFullTable(this HtmlHelper helper, IEnumerable<CarsViewModel> model)
{
But I dont know which model would be.
Does it possible to make universal helper which gets would get different view models?