Design principle that comprises the process of separating a computer program into distinct features that overlap in functionality as little as possible.

learn more… | top users | synonyms

1
vote
4answers
53 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 ...
3
votes
3answers
62 views

When and how should I use enumeration classes rather than enums?

A developer at work recently started using a class pattern instead of enums in places where enums would usually fit. Instead, he uses something similar to that below: internal class Suit { public ...
0
votes
0answers
32 views

@Inject in a Java EE application client does not work?

Problem Injecting an enterprise java bean with @EJB in an application client, launched with Java web start and from a GlassFish 3.1.2.2 (build 5) server.. works as long as the requirements are ...
0
votes
0answers
12 views

Separation of concerns within an Application Router?

First of all, let me be clear: I'm not here to reinvent the wheel, nor am I to create yet another MVC framework. Just wanted to learn a bit more about how things work under the hood. Oh, and yeah, my ...
1
vote
1answer
65 views

MVC4 - DisplayMode versus Areas for creating a client portal to internal business app

I have an MVC app intended for internal company use (but designed with the knowledge that eventually we'd be providing clients access) that is currently served over the internet (ssl). We're now ...
1
vote
1answer
33 views

Rails: Including a Concern with a constant within a Concern

I have concern in which I store constants: module Group::Constants extend ActiveSupport::Concern MEMBERSHIP_STATUSES = %w(accepted invited requested rejected_by_group rejected_group) end ...
1
vote
1answer
50 views

Cakephp calling a function between Model and View

Let say i have a function: function getCarName() { return array(1 => 'BMW', 2 => 'MERCEDEZ BENZ', 3 => 'RENAULT'); } I will use this function on both model and view, should i create two ...
1
vote
1answer
220 views

Play! Framework Form/HTML Helpers: Separation of Concerns?

I just started playing around with Play 2.1.1 using Scala. Going through some tutorials/sample apps, I came across the helper methods that can be used to create forms, e.g.: @(myForm: Form[User]) ...
0
votes
1answer
38 views

Add extra margin to the 960.gs framework without breaking it's purpose

I have a design I want to accomplish and found 2 ways to achieve it using the 960gs framework. Although I don't know which one is better and there's not so much information about best practices in CSS ...
0
votes
2answers
81 views

MVC concatenated properties in View Model or in Controller

I work with MVC and has one question, what is the best practice for building concatenated View Model properties? I can build concatenated field(FullName) in two places: In Model View like this ...
0
votes
2answers
19 views

View instantiating another view

I'm separating my code similar to MVC (models, views, and controllers). Let's say I have two view classes, one is conceptually a page (contains many items) and another is just a widget (like a list ...
0
votes
0answers
240 views

Row level permissions and Laravel app structuring

I'd like to ask other opinions about code structuring of business logic on Laravel applications, mainly regarding permissions at the row level. For those that don't know it, Laravel is a MVC ...
0
votes
3answers
76 views

Which objects are responsible for maintaining references between aggregates?

Suppose I have one aggregate, Ticket. A Ticket will have one assigned Department and one or more assigned Employee. When instantiating a Ticket, should a TicketFactory be responsible for ensuring ...
0
votes
2answers
162 views

Authenticated User and Service Layer

I have a MVC 4 application which uses a Service Layer in a different class library. Some of the calls to that service layer needs to know which uses is requesting the data. The data records is ...
1
vote
0answers
61 views

Creating lots of user controls in WPF?

Is it normal in a WPF app to create a lot of user controls in order to separate concerns that would otherwise be crammed in a single window with a huge XAML hierarchy? I'm finding that I keep making ...
0
votes
1answer
113 views

When would I put my specific data access logic inside of my model in MVC?

Out of the box, when you create a controller in MVC using Entity Framework, you'll get the basic Get statements that pull data into your controller to display into your view. For example: public ...
1
vote
3answers
214 views

Is the DataContext part of Model in MVC or a part of Controller?

working on asp.net MVC from quite some time now today stuck on a theoretical problem going through some sample code on MSDN I read something like this public class SomeController() { public ...
0
votes
3answers
123 views

MVC, Strongly Typed Views vs Separation of concerns

I just got an example from a book Controller: [HttpPost] public ViewResult RsvpForm(GuestResponse guestResponse) { // TODO: Email guestResponse to the part organizer return View("Thanks", ...
0
votes
2answers
42 views

Should the model change the UI or the UI both?

I started wondering about dependencies and invocation order between the model and the UI, respectively controller–the activity classes: When I want to restore the state of my Android application in ...
0
votes
0answers
76 views

Calendar style output?

I'm working on a very basic, primitive 'task log' application in Symfony2. Only two things are required when entering a task, the date/time and the what the task was. I'd like the list to render ...
3
votes
1answer
129 views

Are scopes in rails class or instance methods?

This is a question from a rails noob trying to understand concerns and scopes. I always thought scopes were class methods in rails but then the other day I saw this code from DHH: module Visible ...
2
votes
1answer
229 views

Why Avalon-Framework was closed? [closed]

I've stated work on new project. And started investigation all application that used. And I found one application that use avalon projects (avalon-framework, avalon-excalibur, avalon-repository, ...
0
votes
2answers
85 views

Is this “anemic” model acceptable design?

I first want to say that I am not trying to accomplish a domain model in my current design. That being said, I currently am building an architecture that looks like the following: UI DTO <=> ...
3
votes
2answers
132 views

Dependency Injection - Does it violate Separation of Concerns?

Does Dependency Injection violate the Separation of Concerns as it pertains to an n-tier architecture? Suppose you have the following projects: MyApp.Data MyApp.Business MyApp.Web If I were to use ...
1
vote
2answers
132 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
102 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 ...
3
votes
4answers
176 views

Separation of Concerns, Business logic vs Presentation logic

In MVC or in general, when trying to separate business logic from the view, how far do you go in terms of removing logic from the views? Should a view have zero logic? Should there be multiple static ...
0
votes
2answers
378 views

Dojo declarative vs. programmatic creation of Select elements with stores

I'm trying to hook up a Select element with a Dojo store. The Select element is declared in HTML and I'm trying to give it a store in some JavaScript code. It seems the Dojo documentation recommends ...
0
votes
1answer
48 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 ...
0
votes
0answers
121 views

Amount of on-page JS, async, linked resources & lazy-loading

Finishing up a redesign of my website and at the end of the page, right before the closing body tag looks like a mess of scripts to me: <script ...
4
votes
3answers
105 views

Should translation of a user specific 'end date' to a DateTime be done at the Presentation Layer or Business Layer?

The system has a page where the user can search through items by specifying a start date and end date. These are plain dates (Without the time component). For the user it seems most intuitive for the ...
1
vote
2answers
343 views

Generating Interfaces from entity framework database first auto-generated code

I am using MVC3, C# 4.0 and Entity Framework in Visual Studio 2010. I am generating my edmx and Designed.cs files from a database. I am then generating interfaces from the entities in the Designer.cs ...
0
votes
2answers
417 views

Domain driven design concepts

I'm having some trouble with a few concepts in an application I am building using domain driven design. I have the following layers: Application Domain Infrastructure So, let's assume I have ...
3
votes
3answers
108 views

Errors - Do they belong in the logic, or the presentation layer?

Regarding function calls, is it better to give the caller the responsibility of checking if a function worked or failed, or should the error be announced by the function itself? The reason I'm asking ...
1
vote
1answer
276 views

How to separate CoreData management from the AppDelegate in OSX applications

If you are not interested in my story, jump to the two numbered questions on the bottom now. In this Question, it is discussed whether or not to separate the CoreData handling from the AppDelegate. I ...
6
votes
4answers
984 views

Where to convert a DTO to ViewModel?

I've inherited an MVC2 project using a pretty standard and decently well kept DDD pattern. I've been doing a lot of reading on the whole DTO/ViewModel debate as well. Currently our DTOs are often ...
1
vote
0answers
61 views

Separating model concerns

Any given model in my application might implement the IHasOpenGraphMetadata, if that's the case, a call to @Html.Partial("_OpenGraphMetadata") in my layout will render the related metadata, by ...
0
votes
0answers
51 views

Ideas to limit Model awareness (MVC)? (Mongoose, but is generic to asynchronous queries)

For example I have a Job and a Worker: When I start a Job I want to make the Worker busy. Just this. Remember, this is asynchronous (Node js). How I might do: The jobs.start service is called, ...
1
vote
1answer
52 views

Does data-id violate separation of concerns

My question is simple: Does adding the "data-" notation to your mark-up violate MVC's separation of concerns? Example: <div id="myDiv" data-id="34"></div> or if you're using a ...
0
votes
1answer
75 views

Is it good advice to put Models/POCO's in separate DLL?

How does the principles say about put POCO's (Or Models in MVC) in a separate DLL? The point is to have domain wide objects easier to "move around", when objects are distributed to, and used by, ...
2
votes
1answer
913 views

ASP.NET MVC Require positive number as input, save as negative in model - validation fails

I want to model an 'Expense' object that has a 'Sum' (decimal) field. In the view, I want to validate that the user enters a positive value. OTOH I want to make sure I save the object with a ...
0
votes
1answer
82 views

Django - Separation of concerns and authentication

I tried to separate the authentication of view (controller). In my view the code did not seem to be in a good place. Then I came to the result shown in the code below. This is wrong, I can improve ...
0
votes
0answers
35 views

Where to interpret query string from a RESTful interface in a 3-layer architecture?

I'm doing initial design of a 3-layer system that includes a RESTful service as one interface. Several of the resources will be searchable via query string, about 6-10 parms like this: ...
0
votes
1answer
137 views

Does Entity Framework DB First (EDMX) prevent proper Separation of Concerns?

I am new to entity framework and MVC, and trying to understand what constitutes a good design approach for a new application. There are several ways of using Entity Framework. However, for my ...
0
votes
0answers
44 views

SOA Separating business domains (admin vs. public, etc.)

I have an online game. There are 3 areas of concern: Players Inter-server/service communication Development services In a strongly typed language, i don't want players getting the dll that ...
0
votes
1answer
101 views

Proper separation of concerns natively in node.js?

I am a total node.js noobie and trying to figure out the best way to structure my application with proper separation of concerns. I am using mongodb via mongoose and have successfully gotten my ...
0
votes
1answer
303 views

Layering an ASP.NET MVC Web Application

When I develop a WinForms or WebForms app, I create a solution and add multiple projects. The BOL project is a class library for business objects, there's a SQL and a DAL project for ADO.NET related ...
1
vote
1answer
43 views

How to integrate messages or outputs from Model layer into a templated page

I am working on templating in PHP. I know there are templating engines out there but i want something simple for a small project. Here is my problem: Most of my output are stored in a variable ...
0
votes
2answers
2k views

Service Layer, Repository Layer and Entity Framework

I'm designing a layered architecture (all layers are on same machine) with using Entity Framework (POCO entities), to use same layers with an ASP.Net MVC application, mobile application, etc; also to ...
0
votes
1answer
247 views

Event driven design and separation of core/UI logic

I am new to event driven development, and I feel lost when I try to implement events that should pass the core/UI boundary. In my program I have the following (example in c#): UI.RuleForm ...

1 2 3 4 5