Pass parameter to new MVC controller

0

I need to pass parameter "01" from the link to another controller.

namespace Intranet.Presentation.Areas.GestaoDeServicos.Controllers
{
    public class ServicoController : Controller    {

        public ActionResult Cadastro(int id)
        {

            return this.View(id);
        }
    }
}

I want my set up my route to return the following: link

Where parameter "01" is the id that came from the Catalog controller and parameter "00" is nothing more than a new "Service".

    
asked by anonymous 14.09.2018 / 19:38

0 answers