in MVC, where do you draw the line between a controller and model?

Viewed 1655

I've seen code written where almost all non-route related code is passed to a model. I have also seen code where all database persistence is handled by a model, but non-DB processing is handled by the controller.

Which is the better approach?

1 Answers
Related