Validation and in Service Layer or Business Objects? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T19:49:02Z http://stackoverflow.com/feeds/question/975379 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/975379/validation-and-in-service-layer-or-business-objects 4 Validation and in Service Layer or Business Objects? Ryan Tomlinson 2009-06-10T12:53:52Z 2009-09-20T18:48:02Z <p><a href="http://martinfowler.com/eaaCatalog/serviceLayer.html" rel="nofollow">Martin Fowler suggests</a> using a service layer as a boundary between the domain model and and "Data Loaders". However, Rockford Lhotka suggests building validation into the business object itself and this is exactly what CSLA.NET does.</p> <p>The benefits of abstracting this into a service layer is obviously that your service layer can coordinate the activity/operation across multiple business objects. But what are the other advantages and disadvantages of using a service layer over directly using business objects for business logic and validation?</p> http://stackoverflow.com/questions/975379/validation-and-in-service-layer-or-business-objects/980940#980940 0 Answer by Jamie Wright for Validation and in Service Layer or Business Objects? Jamie Wright 2009-06-11T13:04:17Z 2009-06-11T13:04:17Z <p>I am definately in the camp of Rocky Lhotka. I believe that your business objects should be very easy to "port" between applications and UI layers. Adding an additional "service layer" will most likely add a dependency with your objects and therefore make them less "portable".</p> <p>If you write your business object framework correctly, your business objects should be able to handle the validation correctly between various business objects. CSLA.NET does this correctly by having parent/child relationships as well as the concept of dependent property validtion.</p> http://stackoverflow.com/questions/975379/validation-and-in-service-layer-or-business-objects/1451711#1451711 1 Answer by dbones for Validation and in Service Layer or Business Objects? dbones 2009-09-20T18:48:02Z 2009-09-20T18:48:02Z <p>Hello,</p> <p>Im not sure if you have figured this out.</p> <p>Martin Fowler suggestion in the PEAA is the Service layer an API between the UI (or clients) and the Domain/Data layers. it will expose any functionality that can be consumed by a client.</p> <p>If you look at the Domain Model (<a href="http://martinfowler.com/eaaCatalog/domainModel.html" rel="nofollow">Here</a>)</p> <blockquote> <p>An object model of the domain that incorporates both behavior and data.</p> </blockquote> <p>The Domain tier will contain these objects, which will have actions/validation (Behaviour) and state (Data)</p> <p>these objects can be reused in other applications, this will also depend upon your design. the domain layer should not be dependent on the service layer</p> <p>So considering that Domain objects have behaviour (this includes validation) and data. the Service layer is what you want your application to expose (to functionaly do). IE add a customer, or account, calcualte the Bills for the end of month.</p> <p>have a llok at sharp architure's layout (<a href="http://www.sharparchitecture.net/" rel="nofollow">http://www.sharparchitecture.net/</a>)</p> <p>this is my understanding of this meterial.</p> <p>HTH</p> <p>bones</p>