Where does the data model go in a Prism app?
- by HawkeyeJoeS
I'm having trouble where to put our data model in our Prism app. Most, if not all or our data will be coming from web services and the web services are unique for each module. Unfortunately, there will be objects that need to be shared (such as a person/user object).
I'm really torn about whether to add these services directly to the module, so that each is truly independent, or create a separate project to house the web service proxies and business entities.
The modules are being built by different teams, but will all live in the same solution (and source control, of course).