This is a web API that performs Create, Read, Update, and Delete (CRUD) operations on a MongoDB NoSQL database.
dotnet run
dotnet build
dotnet restore
dotnet test
Method | Description | Route |
---|---|---|
GET | Get all books | /api/books |
POST | Create a book | /api/books |
GET | Get a specific book | /api/books/:bookId |
PUT | Update a specific book | /api/books/:bookId |
DELETE | Delete a specific book | /api/books/:bookId |
- Ryan Simiyu