public class YearMonthValueViewModel<TValue>
{
public List<MonthValueViewModel<TValue>> Months { get; set; }
}
public class MonthValueViewModel<TValue>
{
public MonthEnum Month { get; set; }
public TValue Value { get; set; }
}
I'm wanting to create a partial view that takes either YearMonthValueViewModel<int> or YearMonthValueViewModel<double>. How do I do this without creating two partial views with exactly the same code? Here's the view's code for reference:
<% for(var j = 0; j < Model.Months.Count; j++) { %>
<div>
<%: Model.Months[j].Month.ToString() %><br />
<%: Html.TextBoxFor(model => model.Months[j].Value)%>
<%: Html.CustomValidationMessageFor(model => model.Months[j].Value)%>
</div>
<% } %>