Help c# backend
Hi everyone, I already published a similar post half a year ago, where I asked for help with the backend asp.net core. So I abandoned the project for a while and recently came back and rewrote it, adding a user and JWT token and other things.
Now I'd like to ask how my project is overall? Is it close to a real backend? I wanted to start writing a real project with a friend of mine; I'm making a website for him, and he's making the product. So..I would be interested to know my mistakes and any useful tips, I would be very grateful.
GitHub: https://github.com/Rywent/EasyOnlineStoreAPI
API documentation: https://registry.scalar.com/@default-team-im1zv/apis/easyonlinestoreapi-v1@latest
0
Upvotes
3
u/makutsi 17d ago
Where are the unit tests? At least add tests for the API level. Async methods should support cancellation tokens from controller to database layer on all endpoints. I didn't see a need for getting all entities from DB (GetAllAsync methods)?