1
vote
4answers
45 views

Path for separating out the view layer from an existing winforms app?

Given: Our organization has a standard windows form application The form and business logic are intertwined -- i.e. the Autonomous View. We know that the Autonomous View pattern makes writing unit ...
1
vote
2answers
131 views

Hibernate collection mapping: a really good separation of concern?

I'm new to Hibernate ORM and I think you can help me understand it better. More precisely, I found myself thinking if the separation of concern is very well implemented (of course it is, it's me I ...
3
votes
2answers
101 views

Difference between Concern and Responsibility ( ie difference between SRP and SoC )?

SRP - each class should have just one responsibility ( ie reason to change) Separation of Concerns is the process of breaking a computer program into distinct features that overlap in ...
0
votes
1answer
47 views

Where to put php objectToArray logic? Which layer?

I am developing an application in Zend Framework and have the following layers: controller, service, domain model and mapper. My domain objects need to be represented as arrays for several different ...
1
vote
1answer
99 views

What is the proper sequence of method calls when using a multi layered architecture?

I have built a simple survey-tool using MVC 3 with only 1 layer (MVC). I regret this now. All my database access and mapping is handled in the controllers, and some other mapping classes. I would ...
0
votes
2answers
84 views

Template site for MVC3; is this the proper way to display the model?

I'm confused about the way Microsoft is displaying the login page in their template site. The specific phrasing for "User name", "Password", and "Remember me?" is set in the model itself. This seems ...
1
vote
1answer
101 views

separation of concern with repository pattern

I have a question regarding location of repository access. Is it acceptable practice to allow or contain Repository access within an Entity that the Repository Maintains? For example: class Product ...
1
vote
1answer
200 views

How to implement reading default object settings from a database with oop and soc

I have a class which looks like this: public class Location { private int id; private String name = "noname"; ... // other properties public Location(int locationId) { ...
3
votes
3answers
177 views

Does this Rails 3 Controller method make me look fat?

This is a new application, and I have an index method on a Search controller. This also serves as the home page for the application, and I'm trying to decide if I am headed down the wrong path from a ...
1
vote
2answers
334 views

How do I separate business logic and database calls from a WCF web service?

This question may have been asked before, but I'm looking for a different answer than what I've seen. Our website is in ASP.NET and we use the model-view-presenter pattern to get business logic out ...
1
vote
3answers
315 views

How can I keep separation of concerns when using a grid in the presentation layer (esp. .NET)?

In a three-tier model (presentation-business-data access layers), I can consistently keep my lower layers agnostic of the upper layers. For example my data access layer never knows how it is presented ...
1
vote
1answer
183 views

Best Design Pattern for HttpRequestDispatcher?

What's the best design pattern to use for an HTTP Request Dispatcher that has to do a "GET" or a "POST", return an output stream, parse the output stream, and then display the parsed results on an ...
0
votes
2answers
301 views

question of design / structure of application and separation of concerns

So this question is a sort of follow on from here (http://stackoverflow.com/questions/1914097/how-to-deal-with-multiple-event-args). That question led me onto thinking about this but is different ...
16
votes
19answers
1k views

When can a design pattern make your software worse?

When can a design pattern make your software worse? I have seen a program where they used the facade pattern between the GUI and logic. They considered that no objects may be transported over this, ...