I have a stored procedure that returns two tables this two tables I store them in two lists example: List<SpObject1> ob1 and List<SpObject2> ob2
.
What is the best way to return this data from model to view ? I can create another class(tuple) that can store 2 lists and return them to controller but will this be problem to display on view like this and is it good solution ?