tags:

views:

15

answers:

0

How do I share code among controllers of different models. In a 'super' controller action, I want to be able to figure out which controller (route) was called, and using that route name load the corresponding model, and use that model to query the database to pass to the view.

I can easily do this in Ruby on Rails, does MVC allow such a thing?

Thank you