6
votes
7answers
163 views
Uncle Bob style OOP in VB.NET: how to learn?
I’ve been professionally writing VB.NET software for seven years. However, I don’t have a strong computer science background – four courses while studying education at university …
3
votes
2answers
91 views
When an operation needs to pass more than just the result, do you tuple/throw/or getContextual?
I’m trying to refactor some “sending out an email” code by dividing the steps (validate, attach related content, format, send) into separate classes that can be more easily tested, …
2
votes
2answers
94 views
What is a good way to show the relationship between loosely coupled classes and interfaces?
I have introduced the SOLID principles to my team and they understand and are excited about using the principles.
S - SRP - Single Responsibility Principle
O - OCP - Open/Closed …
0
votes
3answers
77 views
Is this a violation of the single responsiblity principle?
I have the following method and interface:
public object ProcessRules(List<IRule> rules)
{
foreach(IRule rule in rules)
{
if(EvaluateExpression(rule.Exp) == …
6
votes
6answers
220 views
Single Responsibility Principle: do all public methods in a class have to use all class dependencies?
Say I have a class that looks like the following:
internal class SomeClass
{
IDependency _someDependency;
...
internal string SomeFunctionality_MakesUseofIDependenc …
0
votes
4answers
114 views
What is your best example of a violation of the Single Responsibility Principle?
I'm looking for some good examples of code that violates the Single Responsibility Principle. Don't show me any examples from Uncle Bob's books or web sites since those are plaste …
18
votes
10answers
497 views
How do you define a Single Responsibility?
I know about "class having a single reason to change". Now, what is that exactly? Are there some smells/signs that could tell that class does not have a single responsibility? Or c …
2
votes
3answers
148 views
Confused about Single Responsibility Principle in the following example
In the following video, the author takes an existing class and assigns the Single Responsibility Principle to it. He takes a Print Class that has the job of Accessing Data, Format …
0
votes
1answer
57 views
Single Responsibility Principle: Should I separate my bibliography class in Reader, Writer and Container class?
Hello SO-Followers,
cowboy coder needs some help from SO-veterans:
I have a given application that uses a bibliography which is read from a file (in reality, it can be different …
2
votes
3answers
109 views
What does the single responsibility principle mean for validation
Does the single responsibility principle mean that your validation rules should be external to the entity?
If so do you use one class per validation rule?
5
votes
4answers
344 views
ASP.NET MVC: Authorization inside an Action - Suggested Patterns or this is a smell?
Hello,
I have an ASP.NET MVC application using Authorization Attributes on Controllers and Actions. This has been working well but a new wrinkle has shown up.
Object: Shipment
…
1
vote
1answer
102 views
Typecast or convert method?
I have a container class with parameters which come from different kinds of configuration files (text or xml for example).
So I made a class for textConfigurationFiles and a class …
2
votes
1answer
249 views
When do you violate SRP (Single Reponsibility Principle)?
SRP(PDF version; HTML version) states that
There should never be more than one reason for a class to change
When you take a look at Outlook, Calendar Event window, it has "Sa …
1
vote
4answers
83 views
Static factory on business object a violation of Single Responsibility Principle?
Am I violating the Single Responsibility Principle (SRP) if I put "data access" methods on the business object? My gut feeling is the API feels more user friendly if the Load meth …
1
vote
1answer
65 views
Determining Class Responsibility and Collaborators
I'm using ActiveRecord to maintain information about users. The User class has the expected load(), insert(), update(), and delete() methods, setters, getters, and a few others. Bu …
