How Can I Keep The 'GUI' Layer Out Of The 'Business Logic' Layer? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T19:28:03Z http://stackoverflow.com/feeds/question/777828 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/777828/how-can-i-keep-the-gui-layer-out-of-the-business-logic-layer 3 How Can I Keep The 'GUI' Layer Out Of The 'Business Logic' Layer? Rob P. 2009-04-22T15:28:30Z 2009-04-22T15:58:01Z <p>I currently have a project that is a 'Business Object' project, and our goal is to have a clear separation between the GUI and the Business Objects. However, my project has a reference to <strong>System.Windows.Forms</strong> and that's a big red flag to everyone that my project is poorly designed.</p> <p>My problem is that I'm using a 3rd party control called 'Active Query Builder'. It's literally a 'Control' as in GUI, System.Windows.Forms.Control; but it is never displayed anywhere, added to any Form's Controls collection. And it provides much of the core functionality of the Business Object.</p> <p>Anyway, without the reference to System.Windows.Forms - I can't use the 3rd party control and the BO is horrifically broken. But I'm told I can't have a reference to System.Windows.Forms because it's bad coding practice.</p> <p>And I'm at a complete loss for what to do.</p> <p>Can someone with more design-pattern type experience offer up a solution?</p> http://stackoverflow.com/questions/777828/how-can-i-keep-the-gui-layer-out-of-the-business-logic-layer/777846#777846 5 Answer by Josh for How Can I Keep The 'GUI' Layer Out Of The 'Business Logic' Layer? Josh 2009-04-22T15:32:35Z 2009-04-22T15:58:01Z <p>So you have a library which references WindowsForms, but doesn't use anything directly? Your BO project is not messing around with any of the forms? </p> <p>I think you're fine then, the reference is a red flag which says wait why am I doing this. But so long as the layer is still logically seperated then IMHO your ok. </p> <p>One thing you could do is abstract this out into another project that would handle interacting with the query builder. So your BO project would work with the Query Builder project which would know how to use this control.</p> http://stackoverflow.com/questions/777828/how-can-i-keep-the-gui-layer-out-of-the-business-logic-layer/777851#777851 3 Answer by Lazarus for How Can I Keep The 'GUI' Layer Out Of The 'Business Logic' Layer? Lazarus 2009-04-22T15:33:12Z 2009-04-22T15:33:12Z <p>I may be wrong here but System.Windows.Forms is simply part of the .NET Framework and doesn't actually constitute the GUI. It may have many useful functions that you might utilise that don't display anything. I think whomever stated that this shouldn't be used might be misunderstanding the principle.</p> <p>If you are developing an n-tier application it is common to operate GUI-Business Logic-Data Store separation but the GUI is strictly the user interface that presented to the user to allow interaction, not the framework that facilitates it.</p> http://stackoverflow.com/questions/777828/how-can-i-keep-the-gui-layer-out-of-the-business-logic-layer/777859#777859 2 Answer by Harper Shelby for How Can I Keep The 'GUI' Layer Out Of The 'Business Logic' Layer? Harper Shelby 2009-04-22T15:34:05Z 2009-04-22T15:34:05Z <p>I'm only vaguely familiar with Active Query Builder, but isn't that a GUI component that's used to create SQL queries? I'm at a loss to see how that sort of component belongs in business object at all. </p> http://stackoverflow.com/questions/777828/how-can-i-keep-the-gui-layer-out-of-the-business-logic-layer/777860#777860 1 Answer by Ryan Emerle for How Can I Keep The 'GUI' Layer Out Of The 'Business Logic' Layer? Ryan Emerle 2009-04-22T15:34:11Z 2009-04-22T15:34:11Z <p>You can create a wrapper class for the control that implements an interface with the methods you need. Your business object can have a dependency on that interface which can be implemented by anything (in this case it's a control).</p> <p>It does raise some concerns that this "Control" has functionality unrelated to the UI; it just feels wrong.</p>