I have this view method witch required 2 arguments
[Route("chatbot/{chatbotId}/intents/{intentId}")]
public IActionResult Intents(int chatbotId, int intentId)
{
    return View();
}
The question is how can I pass the argument from ASP.NET Core core to it?
<a class="nav-link text-dark" asp-area="" 
      asp-controller="Chatbot" asp-action="Intents">Intents</a>

asp-route-chatbotId="..."etc?