S.O.L.I.D is a set of principles used for designing object oriented solutions :- S - Single Responsibility principle O - Open Closed principle L - Liskov Substitution principle I - Interface Segregation principle D - Dependency Inversion principle

learn more… | top users | synonyms

1
vote
2answers
56 views

Dependency Inversion with compile time configured Dependency Injection in an ASP.NET MVC 4 Solution

I've been researching how to design a MVC 4 web solution that follows the Dependency Inversion Principle and utilizes a Dependency Injection (DI) container that is configured fluently (i.e. with ...
1
vote
4answers
89 views

How to practice SOLID principle of OOP design?

I'm new to SOLID principle but I understand it. My main problem is having a hard time designing my classes to follow the SOLID specially the Dependency Inversion. Sometimes it's easy to write the ...
1
vote
2answers
35 views

Work flow in MVC models?

I'm looking at the ruby gem workflow: https://github.com/geekq/workflow The examples and other examples on the web have the workflow code in the model itself. I believe this is a violation of SOLID. ...
5
votes
5answers
73 views

SOLID principles, and hard code configuration inside a class

I have noticed in a lot of code lately that people put hard coded configuration (like port numbers, etc.) values deep inside of classes/methods, making it difficult to find, and also not configurable. ...
-1
votes
1answer
73 views

Does ToString() method violates SRP? [closed]

As the title states, why any object should inherit the ToString() method (in C# or Java for example) and in some way care to convert it to String? Isn't this, in some cases, a violation of the Single ...
0
votes
1answer
29 views

Use of dispatchers in systems

What is the relevance of the dispatcher in the system below? Is this a pattern/principle? I am not able to surmise the relevance of the Dispatcher here. As per literature,there is one Dispatcher ...
2
votes
2answers
113 views

Applying the Open/closed principle in a method

Hi I was tasked with refactoring a portion of code in order for it to corespond with the open/closed principle.I managed to do that applying the strategy pattern in two of the methods but in one I do ...
3
votes
5answers
113 views

Architecture for Avoiding Switch Statements

I am working on a new project and I am trying to adhere to proper design methods. I have ran into an issue with a switch statement that I know is a problem but I am unable to re-factor it out in an ...
1
vote
1answer
81 views

Is adding a class that inherits from something a violation of the solid principles if it changes the behavior of code?

I struggled to enable my code to run code first EF migrations using different connection strings, and finally got it working. The method I used is outlined in my answer to this question What bothers ...
0
votes
0answers
14 views

When it's ok for views to load data from server

It's a puristic issue I guess. Inside my ios app I have a view (FacebookAvatarsView) that displays avatars of people who attend an event. That view is only a small element on the screen and has only ...
3
votes
2answers
55 views

SOLID and unit testing. Using language provided methods/classes

So I've read about this thing called SOLID (mixed with) Writing Testable Code. And then specifically about the D part. How does one follow these guidelines when using primitive types or ...
0
votes
2answers
54 views

Ending with too many objects (layered design)

I have a lot of dropdown lists, custom grids on my webform which are displayed to the end user. Each is populated from database through a DAL. I have separate classes defined for each. However, I am ...
1
vote
0answers
81 views

Do setters and getters really break the SRP?

I've recently read an article that describes how they clearly may break the SRP. And now I'm totally confused, because I used to write single classes with both setters and getters within for the long ...
2
votes
4answers
67 views

Extending base class to include details?

I have a DTO returned by my DAL. For example public class CustomerDTO { public int CustId {get; set; } public int CustType {get; set; } . . . public string GetCustomerTypes{ ...
1
vote
1answer
67 views

SharePoint deploy reusable code

I just inherited a SharePoint project that I want to refactor and take all the common/reusable code and place it in a seperate project within the solution. The solution already has several projects, ...
6
votes
2answers
91 views

When Liskov Substitution refers to subtypes, is it talking about derived classes in the context of C#?

I'm unfamiliar with the word 'subtype' after looking at the wikipedia article. I took Liskov substitution to mean if you have a method that takes an Animal, you should be able to pass in a Cat or an ...
1
vote
2answers
147 views

SOLID GRASP controller pattern?

I have a question about applying the GRASP controller pattern while keeping it SOLID, more specifically, while keeping it with a single responsibility. Wikipedia's Controller Pattern definition says: ...
-1
votes
6answers
191 views

How to comply with Liskov's Substitution Principle (LSP) and still benefit from polymorphism?

The LSP says "The derived types must not change the behavior of the base types", in other words "Derived types must be completely replaceable for their base types." This means that if we define ...
7
votes
2answers
130 views

In SOLID, what is the distinction between SRP and ISP? (Single Responsibility Principle and Interface Segregation Principle)

How does the SOLID "Interface Segregation Principle" differs from "Single Responsibility Principle"? The Wikipedia entry says that ISP splits interfaces which are very large into smaller and more ...
0
votes
1answer
84 views

violation of SOLID principles

suppose we have a class structure where the code is divided in two parts lets us say computer science and business, now this also further divides in terms of country also, say Indian (cs or MBA) ...
1
vote
1answer
55 views

Business entity that accesses data store to validate itself: an SRP violation?

Consider the following business entity class. In order to validate itself, it needs to know something about the state of the database, perhaps to prevent a conflict of some kind. So, it has a ...
13
votes
2answers
253 views

Should factories set model properties?

As part of an overall S.O.L.I.D. programming effort I created a factory interface & an abstract factory within a base framework API. People are already starting to overload the factories Create ...
1
vote
1answer
126 views

Dependency Inversion Principle and where to put the interfaces

I am building a simple MVC application in asp.net. I want to follow the dependency inversion principle and I don't know if I am doing it right. I am currently working on the Authentication system. I ...
2
votes
2answers
87 views

SOLID , MasterPages and ASCX?

I need to create a layout for a site. (I'm currently working on the master page). However the logo (ascx) an be at different locations : ( location determined by query string value...). Should ...
16
votes
7answers
534 views

S.O.L.I.D principles and compilation?

For example , regarding Single Responsibility principle : Let's talk about a Radio class : One could argue that the Radio class has two responsibilities, being volume and station management. ...
5
votes
6answers
173 views

S.O.L.I.D Essentials missing points?

I've read so many articles about this but still I have 2 questions. Question #1 - Regarding Dependency Inversion : It states that high-level classes should not depend on low-level classes. ...
0
votes
1answer
117 views

Android - Can't Apply Decorator Pattern on Activities?

I would like to be able to dynamically build an Activity that has a few of the capabilities that we have (such as prevent scrolling, monitors internet connectivity, prevent orientation change, etc.). ...
1
vote
3answers
102 views

Using polymorphism instead of a conditional when the responsibility doesn't belong in the class

Something I'm running into working on a very simple application that's part of a school project. It's a very basic console based employee management system where you can add 4 types of employees ...
0
votes
1answer
180 views

Can't seem to understand SOLID principles and Design Patterns [closed]

I'm trying to get into OOP lately and I'm having trouble with SOLID principles and Design Patterns. I see why people use them and I really want to use them too, but I can't wrap my head around ...
0
votes
2answers
66 views

Which class does a better 'Separation of Concerns'

I have this class, which creates a document and saves it: public class DocCreator { private IDocumentStore _documentStore; public DocCreator(IDocumentStore documentStore) { _documentStore ...
0
votes
3answers
71 views

Do out parameters in methods on a stateful object add responsibilities?

I have an object that's responsible for sending email, so I create an EmailSender, then tell it to SendEmail, passing in some EmailDetails: string diagnostics; EmailSender sender = new ...
0
votes
0answers
39 views

Is there such a thing as a class template with CodeDOM?

Basically I want to generate classes using CodeDOM but I don't want to write every single element of a class as an abstract CodeDOM object (this has proven to be extremely time consuming and tedious). ...
0
votes
3answers
166 views

Open closed principle vs Strategy pattern

I have read both strategy pattern and open closed principle both look same to me.If they are same why we have different name pattern \principle for them. Please share your thoughts on this one.
0
votes
2answers
244 views

How to generalize login, action, and logout when using Web API HttpClient

I am using HttpClient (aka Web API client) to consume RESTfull services. Services require session to be established (via login) and then destroyed (via logout) upon each operation. So the call to ...
1
vote
2answers
93 views

Are subclasses allowed to have public methods according to the Liskov substitution principle?

Consider the following class hierarchy: Abstract class Printer{ public print(){ //code to handle printing } } class LaserPrinter extends Printer{ private $file; public ...
2
votes
1answer
221 views

SOLID principles and how to actually implement them

Lately I've been tinkering with TDD and coding based on the SOLID principles . I have a scenario as follows: One can have IRecurringProfile, which performs a series of payments on an interval, e.g ...
2
votes
1answer
78 views

Are utility classes allowed with the Single Responsibility Principle (SRP)

I just answered a question related to SRP which made me think: How does SRP stand on utility classes? By definition utility classes tend to do a lot of things. I can see how gatering related ...
0
votes
1answer
86 views

Does the class CommaDelimLog in the following code violates single responsibility principle?

The program parses log files - each log file may have different kind of field format (fixed width, comma delimited, etc). Also each log file are mixed of several different kind of logs - each kind ...
4
votes
1answer
149 views

Command Pattern use for Returning Data

I am working on an application and trying to follow Robert C. Martin's SOLID principles. I am using the Command Pattern and I was wondering about the implementation. In all of his examples in Clean ...
0
votes
0answers
45 views

How can I setup filtering using the SOLID principles discussed by Robert C. Martin?

I'm using the "Solid by example" codeplex project as a reference for the following code: Core: These interfaces and classes make up the core application. IFilterSpecification: public interface ...
3
votes
4answers
528 views

Design pattern to remove switch case

I have a requirement to verify whether the postal code for a particular country is mandatory or not based on the countryid supplied. Currently I'm doing this with a switch statement but this code ...
2
votes
1answer
88 views

design pattern advice: graph -> computation

I have a domain model, persisted in a database, which represents a graph. A graph consists of nodes (e.g. NodeTypeA, NodeTypeB) which are connected via branches. The two generic elements (nodes and ...
1
vote
6answers
191 views

SOLID/TDD encourages one implementation for one interface

I overheard the below and was asked to confirm this statement: "SOLID/TDD encourages one implementation for one interface, this is not real world and goes against the point of interfaces doesn't it?" ...
3
votes
2answers
2k views

A messy view layer, should I depart from MVC?

I'm moving the question here from IRC. The problem: I have jumped in into a code base that I want to take on good shape. Don't we always? In that spirit, after adding some coverage (as in test ...
2
votes
1answer
76 views

Functional Programming, SRP, testability and classes with static and instance mutable fields

I hope I can phrase this question correctly. I have a concern when dealing with state and test-ability in classes with static and instance mutable fields. Do the static fields essentially constitute ...
1
vote
2answers
137 views

Issue in using Composition for β€œis – a β€œ relationship

I have system being developed for an HR system. There are Accountant employees and Programmer employees. For the first month of joining the company, the employee is not given any role. One employee ...
1
vote
2answers
68 views

Abstraction is changed?

My question is, how to redesign abstract factory. For example, I get next abstraction of vehicles: interface IEngine { int Power(); } class Gasoline : IEngine { public int Power() {return 150; }} ...
5
votes
4answers
281 views

Using a Func<> over an interface?

I have an already existing generic class public class Foo<T> { private T _item; public Foo(T item){ _item = item;} } I have to create a method which will return a certain property of ...
2
votes
3answers
236 views

SOLID principles and web page class

I am trying to follow SOLID principles when writing new classes and code. My question is about ASP.NET classes that extend the Page class i.e. ASPX files. If I had a page class that has a page_load ...
0
votes
2answers
60 views

Is it good or not to have temporary fields to save costly work between modules

I have: Raw Object: contains raw data before importing to the system Module #1: Validator which will validate Raw Objects Module #2: Updater which will use validated raw data (invalid data were ...

1 2 3 4