In one time I need to return IndexParty model. Next I need to return IndexPerson model to a view.
public Tuple<IndexParty> GetTuple(){
var tuple = new Tuple<IndexParty>(model);
return tuple;
}
My .cshtml class is here
@model Mymodel
<div class="hide partial-view" id="partyrelationship">
@Html.Partial("../Party/Index", Mymodel)
</div>
Then I want to load as partial view.How can I do this?