Design principle that comprises the process of separating a computer program into distinct features that overlap in functionality as little as possible.
0
votes
1answer
93 views
Separation of concerns and authentication
I'm trying to be a Good Developer and separate my concerns out. I've got an ASP.NET MVC project with all my web code, and a DAL project with all the model code.
Sometimes code in the DAL needs to ...
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 ...
5
votes
3answers
562 views
Where should 'CreateMap' statements go?
I frequently use AutoMapper to map Model (Domain) objects to ViewModel objects, which are then consumed by my Views, in a Model/View/View-Model pattern.
This involves many 'Mapper.CreateMap' ...
1
vote
3answers
241 views
Separating Content (aspx) from Code (aspx.cs) in ASP.NET
I would like to know what is the best practice on separating the content of an aspx page (ASP.NET 3.5) from the code (I'm using C#). I have a form that users can type data in - for example they are ...
1
vote
1answer
58 views
How do I design a Wizard-based system with SoC in mind?
I'm building a Windows Forms system (in C# if it matters to anyone) that provides an application automation service. As this application is targeted at users who are not computer savvy, I've decided ...
1
vote
5answers
395 views
Unit test complex classes with many private methods
I've got a class with one public method and many private methods which are run depending on what parameter are passed to the public method so my code looks something like:
public class ...
1
vote
3answers
644 views
How to access Session values from layers beneath the web application layer
We have many instances in our application where we would like to be able to access things like the currently logged in user id in our business domain and data access layer. On log we push this ...
0
votes
0answers
139 views
c# - what would be the best way to package/abstract a topology map API with persistance?
Background - I'm looking to create a reusable library that allows one to work with a topology map of data. That is data that consists of nodes and relationships between them. The API's would include ...
9
votes
2answers
531 views
How do you keep application logic separate from UI when UI components have built-in functionality?
I know it's important to keep user interface code separated from domain code--the application is easier to understand, maintain, change, and (sometimes) isolate bugs. But here's my mental block ...
...
8
votes
5answers
3k views
ASP.NET MVC - separating large app
I've been puzzled by what I consider a contradiction in terms: ASP.NET MVC claims to be furthering and supporting the "separation of concern" motto, which I find a great idea.
However, it seems ...
2
votes
2answers
416 views
ASP.Net MVC - What replaces events to support loose coupling?
What feature(s) of ASP.Net MVC can replace the way events can be used in Webforms to support loosely coupled components?
For example, take a simple pager control in Webforms:
A page number is ...
3
votes
3answers
764 views
Rhino Mocks, Dependency Injection, and Separation of Concerns
I am new to mocking and dependency injection and need some guidance.
My application is using a typical N-Tier architecture where the BLL references the DAL, and the UI references the BLL but not the ...
3
votes
3answers
310 views
How to explain to someone that a data structure should not draw itself, explaining separation of concerns?
I have another programmer who I'm trying to explain why it is that a UI component should not also be a data-structure.
For instance say that you get a data-structure that contains a record-set from ...
1
vote
3answers
174 views
Architectural conundrum
The worst thing when working on a one man project is the lack of input that you usually get from your coworkers. And because of the lack of that you tend to make obvious mistakes.
After going down ...
0
votes
1answer
108 views
Validating disconnected POCOs
In my ASP.NET application I have separate projects for the Data, Business and UI layers.
My business layer is composed of plain objects with declarative validation, using DataAnnotations.
Problem ...
2
votes
2answers
178 views
ASP.NET User Controls that communicate directly with Service Layer?
Is it considered poor design to create "black box" User Controls that communicate directly with the service layer (to perform CRUD operations, validation, etc)?
By "black box", I mean that they ...
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 ...
3
votes
4answers
372 views
Where to put certain logic in CakePHP
I've recently started to rewrite a project I did a few years ago using CakePHP. I'm trying to do everything 'right' this time, so maybe someone get give me a a pointer on doing to the following:
I'm ...
49
votes
3answers
10k views
How to map View Model back to Domain Model in a POST action?
Every article found in the Internet on using ViewModels and utilizing Automapper gives the guidelines of the "Controller -> View" direction mapping. You take a domain model along with all Select ...
1
vote
2answers
149 views
Does this really violate MVC Separation of Concerns
Simple question. I must be totally wrong but I thought worth asking this question.
Is accessing ViewData[“Message”] within the View correct according to separation of concerns described in MVC?
For ...
4
votes
8answers
588 views
Where to put restrictions on entities when separating Business layer from Data Layer
I am attempting to create the the business and data layers for my big ASP.NET MVC application. As this is the first time for me attempting a project of this scale I am reading some books and trying ...
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 ...
5
votes
6answers
827 views
ASP.NET: Code behind or no code behind?
Why would anyone want to not use a code behind file so that server sided code is separated from markup? Wasn't that supposed to be one of the advantages of .NET over classic ASP?
Personally, I think ...
4
votes
2answers
404 views
How do you keep your Domain Logic seperate from DB/Persistence Logic with Linq-2-Sql?
I'm trying to get at the best way to seperate the concerns of my domain logic and my persistence logic. I'm using Linq-2-Sql for the data access and I've been following the NerdDinner tutorial. If you ...
7
votes
4answers
546 views
Approaching refactoring
I have a very data-centric application, written in Python / PyQt. I'm planning
to do some refactoring to really separate the UI from the core, mainly because
there aren't any real tests in place yet, ...
8
votes
1answer
2k views
When to use JavaScript template engines?
Here is an example of JavaScript template from Ben Nadel's demo single page long-lived AJAX application taken from: [source]
<script id="contact-list-item-template" type="application/template">
...
5
votes
4answers
1k views
Most Correct way to redirect page with Model-View-Presenter Pattern
What is the best way to call a Response.Redirect in the Model-View-Presenter pattern while adhering to correct tier separation?
2
votes
3answers
680 views
PHP MVC view looping
I have a template for a "blog preview" - which is basically just a thumbnail, title, and short excerpt of said blog in a nice concise structure built for repetition in a list.
As hinted above, I ...
1
vote
3answers
706 views
Where to apply logic for a sidebar control in ASP.NET MVC
Take the example of wanting to have a "Latest news items" sidebar on every page of your ASP.NET MVC web site. I have a NewsItemController which is fine for pages dedicating their attention to ...
6
votes
2answers
415 views
ViewModels and rendering
In several sample projects, I've seen ViewModels being used to convert data objects into strings, for use in the View.
The ViewModel will typically have a constructor that receives one parameter - a ...
3
votes
2answers
166 views
Object Construction at Client or Business Layer?
Something I've noticed from looking at multiple .NET starter kits is that business object construction is often handled at the client level. Then, the business object is passed to the business layer ...
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 ...
1
vote
3answers
488 views
Are WPF related properties inside a ViewModel a violation of MVVM best practices?
Here is an example case to elaborate:
I am dynamically creating a simple Bar Graph using an ItemsControl in my View and binding the items to a collection of BarViewModels (each containing percentage ...
1
vote
3answers
229 views
Taking baby-steps in applying a better design
In wanting to get some hands-on experience of good OO design I've decided to try to apply separation of concerns on a legacy app.
I decided that I wasn't comfortable with these calls being scattered ...
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, ...
3
votes
5answers
276 views
Performance implications with 'clean code'
At my workplace we're planning a major refactor on our core product, a web application with several 'modules'. I quoted that because that's one of our main concerns: modules are not really modules, ...
0
votes
0answers
50 views
Which validation tags are appropriate for the model?
For proper separation of concerns on a domain/business assembly/layer it seems to me that a good practice would be to go ahead and system.ComponentModel.DataAnnotations mark up my fields in the domain ...
4
votes
2answers
703 views
Refactoring a legacy WebForms app to better separation of concerns
i.e. Is MVP still the next best choice when MVC is not an option?
I thought I'd ask this here as I'm sure there are others like me who don't have the luxury of being on a green-field project and want ...
6
votes
1answer
1k views
Separation of Concerns the Repository Pattern & Entity Framework 3.5
I'm trying to be a better developer...
What I'm working with:
.Net MVC Framework 1.0
Entity Framework 3.5
I've been doing some reading and I think what i want to do is:
Create a repository for ...
7
votes
3answers
6k views
RSpec in Rails: How to skip a before_filter?
I am trying to test my controller and maintain separation of concerns.
The first concern is "Who is able to execute which action?"
I am using authlogic for authentication and be9's acl9 for ...
4
votes
4answers
642 views
MVC - is it just a 3 tier model?
Just began researching mvc, and am not sure I grasp it yet. From what I gather it seems like an implementation of a 3 tier solution ie Model corresponds to DAL, Controller to business logic layer, ...
7
votes
5answers
1k views
Difference between Single Responsibility Principle and Separation of Concerns
What is the difference between Single Responsibility Principle and Separation of Concerns?
1
vote
3answers
337 views
Php: functional style, light-weight alternatives to the separation of concerns in OO MVC patterns?
The problem:
I have a legacy php app that is coded in no particular style (some OO, function libraries, some templates, no templates), which I am slowly rewriting, cleaning up, and adding to.
When ...
6
votes
5answers
2k views
Ruby on Rails with Repository Pattern?
After working with ASP.Net MVC, it has me thinking about Rails. I worked with Rails prior, but am a little rusty. ASP.Net MVC tutorials recomment hiding data layer implementation with the repository ...
0
votes
3answers
153 views
Architecture Concerns
My domain classes and persistance logic (Hibernate) are in one project called model. This jar is included within all of my apps.
Packaged com.company.model & com.company.persistance
Another ...
0
votes
1answer
160 views
Where should the viewModel be created?
I have seen a few examples where the viewModel (in Silverlight apps) is in the UserControl.Resources XAML section of a View. I read that for using Blend, this is a good place to have it (as it gives ...
2
votes
4answers
179 views
How have you combined the advantages of the direct View-to-Model approach and MVVM in your WPF projects?
In our application we have many Model objects that have hundreds of properties.
For every property on the model:
public string SubscriptionKind { get; set; }
...100x...
we had to make an ...
3
votes
4answers
370 views
MVC… how and why, and what other good options are there (PHP)?
All the examples I've seen of what and how MVC SHOULD be have used classes as the models, classes as the controller, and HTML templates as the view. And all of them consisted of one index.php script ...
3
votes
2answers
845 views
Validation in the business logic - ASP.NET Web Forms
In reading up on ASP.NET MVC I came across some wonderful examples of validation where the business rules were associated with the model and the UI merely displayed the set of errors and flagged the ...
2
votes
2answers
279 views
Dynamic animations, Commands and separation of concerns
Scenario: I have a (numeric) textbox, a button, and a label. When the button is clicked I'd like the label to "animate" to the numeric value in the textbox (like a spinning dial)
Given:
a) that ...
