Where does the data model go in a Prism app?
        Posted  
        
            by HawkeyeJoeS
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by HawkeyeJoeS
        
        
        
        Published on 2010-05-23T21:14:02Z
        Indexed on 
            2010/05/23
            21:21 UTC
        
        
        Read the original article
        Hit count: 245
        
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).
© Stack Overflow or respective owner