I have seen two different styles of MVC CRUD when it comes to standard operations.
The first is the controller/action method. ( Ex: Contacts/List ) This means that you build a view for every controller.
The second is action/controller ( Ex: List/Contacts ) For this you can pass in meta data to build the list view but it makes customization a little harder.
Which do you use and why?
