Design principle that comprises the process of separating a computer program into distinct features that overlap in functionality as little as possible.
My Angular project is growing so I want to keep my project clean. I have one Angular component which depends …
angular module components separation-of-concernsEvery article found in the Internet on using ViewModels and utilizing Automapper gives the guidelines of the "Controller -> …
asp.net-mvc domain-driven-design viewmodel automapper separation-of-concernsWhat is the difference between Single Responsibility Principle and Separation of Concerns?
separation-of-concerns solid-principles single-responsibility-principleI am trying to test my controller and maintain separation of concerns. The first concern is "Who is able to …
ruby-on-rails rspec separation-of-concerns before-filtertl;dr In a good design. Should accessing the database be handled in a separate business logic layer (in an …
c# asp.net-mvc entity-framework controller separation-of-concernsPossible Noob Warning: New to RoR I am trying to use concerns in RoR. Right now I just have a …
ruby-on-rails ruby web separation-of-concernsI learned PHP by hacking away at phpBB2, even submitting a few mods to their database, which others downloaded and …
php html templates separation-of-concernsI've inherited an MVC2 project using a pretty standard and decently well kept DDD pattern. I've been doing a lot …
asp.net-mvc domain-driven-design viewmodel dto separation-of-concernsI've read some MVC advice in the past regarding models stating that you should not reuse the same model objects …
model-view-controller model separation-of-concernsI have concern in which I store constants: module Group::Constants extend ActiveSupport::Concern MEMBERSHIP_STATUSES = %w(accepted invited requested …
ruby-on-rails separation-of-concerns