Design principle that comprises the process of separating a computer program into distinct features that overlap in functionality as little as possible.
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 ...
2
votes
3answers
487 views
ASP.NET MVC - Using UnitOfWork
I'm currently working on a web app which consist of 6 layers:
Web (reference to ViewModels and Controllers)
ViewModels
Controllers
Services (reference to Data and Entities)
Data (reference to ...
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
33 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
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
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
221 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
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
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
...
8
votes
2answers
207 views
Creating Views in PHP - Best Practice
I am working on a website with 2 other developers. I am only responsible to creating the views.
The data is available in an object, and I have getters to read the data then create XHTML pages.
What ...
8
votes
8answers
2k views
Preferred way to combine PHP and HTML?
I learned PHP by hacking away at phpBB2, even submitting a few mods to their database, which others downloaded and used. (I don't believe phpBB2 is supported any more with phpBB3 out so long now, so ...
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
0answers
358 views
Learning New Concepts or syntax
I want to learn new concepts in .NET. I have taken my old ecommerce website and reimplemented it using different concepts. Its one "Hello World" Website for each technology. I am hoping to learn ...
2
votes
2answers
417 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 ...
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
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 ...
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">
...
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 ...
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 ...
7
votes
3answers
2k views
EmberJS: Good separation of concerns for Models, Stores, Controllers, Views in a rather complex application?
I'm doing a fairly complex emberjs application, and tying it to a backend of APIs.
The API calls are not usually tied to any particular model, but may return objects of various types in different ...
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 ...
-3
votes
2answers
175 views
Replacing hard-coded Textarea with something clearer? Separating Styles and Logic?
CODE-SMELL
<textarea rows=3 id="help">ask:
bsd:
vim:
...
</textarea>
WANT SIMPLICITY LIKE
<textarea src="./Data/help"></textarea>
$ cat ./Data/help
ask:
bsd:
vim:
How ...
1
vote
3answers
215 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
124 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", ...
1
vote
2answers
97 views
Embedding vs. including Javascript for DOM interaction?
Every beginners guide to Javascript talks about the evils of embedded scripts.
And I get it: definitely good advice for novices who have no concept of modular design. But every rule has an ...
1
vote
3answers
211 views
How to map DTO from EF to Model
I have the following model Person in my UI MVC layer:
public class Person
{
[Required]
public string FirstName { get; set; }
[Required]
public string LastName { get; set; }
...
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
...
1
vote
3answers
338 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 ...
5
votes
5answers
2k views
CakePHP Best Practice: Admin with or without routing
I'm working on an overhaul of a CakePHP app I built under CakePHP 1.2. I've upgraded to 1.3 and am considering moving away from the admin routing paradigm for my application. I'm finding that some ...
4
votes
3answers
2k views
What does N-tier Architecture mean nowadays?
In a traditional sense, N-tier means separating the application into "tiers" and putting each "tier" on different servers. This was done for at least 3 reasons:
Maintenance:
a) Code Maintenance: ...
-1
votes
1answer
110 views
Where should I keep the queries? entity class or control class?
I am trying to make my project completely object oriented and I am separating the control, entity and boundary classes (you can call it m,v,c) On my former projects, I was creating functions in the ...
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
177 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 ...
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 ...
1
vote
2answers
345 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 ...
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 ...



