-1
votes
1answer
106 views

Simple Architecture Verification [closed]

I just made an architecture for an application with the function of scoring, saving and loading tennis games. The architecture has 2 kinds of elements: Components: Standalone elements that can be ...
7
votes
3answers
638 views

IValidatableObject vs Single Responsibility

I like the extnesibility point of MVC, allowing view models to implement IValidatableObject, and add custom validation. I try to keep my Controllers lean, having this code be the only validation ...
5
votes
2answers
1k views

Command handlers and DDD

I have an ASP.NET MVC application, that uses a query service to get data and a command service to send commands. My question is about the command part. If a request comes in, the command service uses ...