refactor: change folder structure

This commit is contained in:
2025-07-18 13:02:13 +03:30
parent 835f833927
commit 3c05411a29
1329 changed files with 116 additions and 38 deletions
+2 -20
View File
@@ -5,29 +5,11 @@
- [ ] Create the `feature/[name]` branch from `develop`
## Create `IRepository` in Domain
- [ ] Add the interface to `Domain/Framework/Interfaces/Repositories`
## Task
- [ ] Task
📂 Suggested Folder: `Domain/Framework/Interfaces/Respositories`
```csharp
// IRepository.cs
```
## Implement Base Repository
- [ ] Create `BaseRepository` in `Infrastructure/Framework/Base`
- [ ] Implement the interface
```c#
//code
```
# 🧠 Hints & Notes
- Use generics for flexibility
- Mark methods `virtual` if you're going to override
# 🙌 Acknowledgements
- ChatGPT for snippet refinement and explanations
- Microsoft Docs for Entity Framework patterns
# 🔍 References