-
These suggestions only work if the question is rewritten as suggested in #42
"Which TWO statements about the principle „Don’t repeat yourself” (DRY) are correct?
In other words: It should be avoide…
-
A TODO class (and maybe a 'TODO-workflow' class) would reduce the complexity of some plugins and some classes in liborgmode.
Single responsibility principle ...
sotte updated
9 years ago
-
Merhaba Zafer Hocam,
repository ve Servis katmanlarında aynı komutlar var sayılır.
ServiceManager.cs
RepositoryManager.cs
bu iki dosyayı tek bir noktada birleştirebiliriz. bunu ayrı yapmanın…
-
Using best practices such as [dependency management](https://pipenv.readthedocs.io/en/latest/), [consistent formatting](https://black.readthedocs.io/en/stable/), the [principle of single responsibilit…
-
To better align with Single Responsibility principle, move wallet specific methods from transaction package to wallet-sdk . Ex: address from privKey
-
If I understood Law Of Demeter correctly, the following violates it
``` Java
public void foo(Person p1, Person p2) {
return p1.getName().compareName(p2.getName());
}
```
However, would doing…
-
`std::string showInformationAboutPatient()`
Above method shall return information about patient, however it is not specified which data should be returned.
Should data be formatted or not, divided by…
fbtom updated
7 months ago
-
## Issue
The controller `BE/src/modules/search/search.controller.ts` and the service `BE/src/modules/search/search.service.ts` are handling too many responsibilities:
Controller:
- Not expected…
-
Some components are too highly coupled and violate the single responsibility principle making some components hard to test and debug
I would like to propose the following solution:
- Break down co…
-
In some cases we have a dedicated top level object as a builder and in some cases it in an inner class. Also, most options builders do not implement an interface. We should adhere to the design that…