MyApp/
├─ Domain/
│ ├─ Entities/
│ │ ├─ Customer.cs
│ │ └─ Order.cs
│ └─ ValueObjects/
│ └─ Address.cs
├─ Application/
│ ├─ Dtos/
│ │ ├─ CustomerDto.cs
│ │ └─ AddressDto.cs
│ └─ Services/
│ └─ CustomerService.cs
├─ Infrastructure/
│ ├─ Persistence/
│ │ ├─ AppDbContext.cs
│ │ └─ CustomerRepository.cs
│ └─ Migrations/ (créé par EF)
└─ Program.cs