-
Hi, here I am again, this time with a different concern.
Citing Uncle Bob's explanation of Use Cases:
> We also do not expect this layer (USE CASES) to be affected by changes to externalities such as…
ghost updated
8 years ago
-
### Is your feature request related to a problem? Please describe.
GitHub renders `` and ` E.g.
This is `` text.
This is `` text.
**Edit by @joelverhagen: the following list of HTML tags s…
-
## Introduction:
At the `data layer` I have retrofit-interface. For example:
```
public interface SomeApi {
@POST(...)
Observable login(LoginRequest body);
}
```
At the `domain layer` I hav…
ghost updated
7 years ago
-
As in the example, usecase's parameters are set via `UserModule`:
``` java
@Module
public class UserModule {
private int userId = -1;
public UserModule() {}
public UserModule(int userId) {
…
-
As stated in Clean Architecture, dependencies should point only inwards. This separates layers in a way that they could be interchangeable easily and also decoupled (right?).
In your case, you decide…
ghost updated
2 years ago
-
Yay! Feedback is really appreciated :smile_cat:
-
What about update events in the data layer and how to notify about them the presentation layer? Let's suppose, that some third party service has updated some user data in the data base.
Is event bus …
-
I have a question about handling transactions between data and domain layer.
Think about a usecase where two entities should be persisted into a local database in one transaction.
Should the domain la…
-
Subscribe to this issue and stay notified about new [daily trending repos in C#](https://github.com/trending/c%23?since=daily).
-
Hi @android10,
I have a couple of questions regarding how to pass an object from the presentation layer to the domain layer and then to the data layer.
I have a use case when a user signs up within …