Hi,
I need to design a CAD application in C# which should essentially have a separation between the data and its representation.
I am thinking of having a datamodel and a graphic model for representing the geometry of this data. This graphic model will be presented to a view control for displaying through a presentation layer. I want it this way so that I will be able to support multiple views in the future.
But I am wondering how should I establish the relation between the datamodel, graphic model and the presentation layer. Should I need some kind of controllers for this purpose? Where should I keep the datamodel, the graphic model and the presentation object? Which pattern would you suggest for me to solve my problem?
Please suggest someways to have a better design.
Many thanks