I have a special need. I have an application with five modules:-
- Membership
- Rental
- Administration
- Accounting
- Reports
I am developing the application using MVC. I would like to have different type of Routing for this application as follows:-
/Module/Page/Action
Examples are:-
/Membership
/Membership/Home/
/Accounting
/Accounting/Home/
/Membership/Membership/Edit/1
/Accounting/JournalVoucher/Delete/1
etc.
Please note, that the Home page is repeated for every module.
I nearly have around 70 screens in my application. Can you please tell me what is the best way to achieve this goal.