In 2 different models I have a method that gives me a list each
Lista<Categorias>------------------Lista<Rutas>
I'm passing one using the following in the ActionResult
of the view
public ActionResult Categoria()
{
return View(ct.listar());
}
How do I send the rt.lista()
(the one of the routes), next to the category to the return of View
correctly?