YourSolution/
│
├── Domain/
│ ├── Interfaces/
│ │ └── IProductRepository.cs
│ └── Models/
│ └── Product.cs
│
├── Application/
│ ├── Interfaces/
│ │ └── IProductService.cs
│ └── Services/
│ └── ProductService.cs
│
├── Infrastructure/
│ ├── Data/
│ │ └── ApplicationDbContext.cs
│ └── Repositories/
│ └── ProductRepository.cs
│
├── WebAPI/
│ ├── Controllers/
│ │ └── ProductController.cs
│ ├── Program.cs
│ └── appsettings.json
│
├── YourSolution.sln
Comments
Post a Comment