I wanna change company to companies. Is there a way to change this? Without having to rename the controller.
The controller name (above in bold) should remain Company. But in every operation I wanna change it to companies.
The reason I'm not using [Route] is because I have a super class which defines:
[Route("admin/codes/[controller]")]
And the company controller is inheriting from that class. And I want to keep the "admin/codes/" in the url.
What is the best solution here? Without having to rename the controller class.