Is there a way to create a View() method that would return multiple objects, for example, I would like to call it something like this:
public class HomeController : Controller
{
public ActionResult Index()
{
return View(CustomObject1 customObject1, CustomObject2 customObject2);
}
}