726 B
726 B
Backend – [Session Title]
🛠️ Task Checklist
🚧 Branching
- Create the
feature/[name]branch fromdevelop
Create IRepository in Domain
- Add the interface to
Domain/Framework/Interfaces/Repositories📂 Suggested Folder:Domain/Framework/Interfaces/Respositories
// IRepository.cs
Implement Base Repository
- Create
BaseRepositoryinInfrastructure/Framework/Base - Implement the interface
//code
🧠 Hints & Notes
- Use generics for flexibility
- Mark methods
virtualif you're going to override
🙌 Acknowledgements
- ChatGPT for snippet refinement and explanations
- Microsoft Docs for Entity Framework patterns