🚀 A simple Movies API built with ASP.NET Core and Microsoft SQL Server, providing full CRUD operations to manage movies and genres efficiently.
📺 Watch this video for more details:
Method | Endpoint | Description |
---|---|---|
GET | /api/movies |
Get all movies |
GET | /api/movies/{id} |
Get a movie by ID |
GET | /api/movies/GetByGenreId |
Get movies by genre ID |
POST | /api/movies |
Create a new movie |
PUT | /api/movies/{id} |
Update an existing movie |
DELETE | /api/movies/{id} |
Delete a movie |
Method | Endpoint | Description |
---|---|---|
GET | /api/genres |
Get all genres |
GET | /api/genres/{id} |
Get a genre by ID |
POST | /api/genres |
Create a new genre |
PUT | /api/genres/{id} |
Update an existing genre |
DELETE | /api/genres/{id} |
Delete a genre |