Usually not. But I tend to make controllers RESTful minded. So if I have Group and Users, I don't make a method called Users in GroupController, but I make a subfolder called Group and there I create UsersController where I can have /groups/{id}/users. That's how I'm structuring my controllers.