Skip to content

Instantly share code, notes, and snippets.

@hudo
Last active August 29, 2015 13:55
Show Gist options
  • Save hudo/8694831 to your computer and use it in GitHub Desktop.
Save hudo/8694831 to your computer and use it in GitHub Desktop.
Two view models controller
public class HomeController : Controller
{
public ActionResult Index()
{
var first = new FirstModel();
var second = new SecondModel();
return View(Tuple.Create(first,second));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment