I'm looking at statistics on "Cars" & "Trucks." I have a model for each which tidies up the raw data and returns it in a common format.
Then in the view I have a single "Vehicles" chart which integrates data from the two sources.
Where in my application should this integration happen?
- In the Vehicles controller?
- In some kind of read-only Vehicles model not backed by a database table?
- In lib?
- ...?