All Questions
3 questions
3
votes
1
answer
185
views
How to structure repositories for a small number of entities?
I am working on a project implemented in DDD style, and I use Repository architecture pattern to persist domain changes. I have multiple roles in domain layer, and that's what raises my question - how ...
0
votes
2
answers
309
views
How compatible are data science notebooks with clean architecture?
Clean architecture decouples an app's core from the presentation/UI layer. The UI is just a plugin, replaceable (eg, web-based to desktop) without impacting the core.
Many data science apps mix code, ...
4
votes
3
answers
8k
views
DDD - Domain Driven Design, which development order should be applied?
1 - Design my entities, ie (in python):
class Account:
def __init__(name, author):
self.name = name
self.email = email
2 - Design my repositories: (as interface)
class ...