Projects Name
Product API
Description
A ASP.NET Core 2.1 Web API project with DDD. The Product API supports the management of products and it`s brands. The documentation was described using Swagger
See the Brands examples here:
URL
https://localhost:5001/index.html
GET all Brands
https://localhost:5001/api/brands/
GET single Brand
https://localhost:5001/api/brands/1
GET all Brands with Total Products
https://localhost:5001/api/brands/count
POST a Brand
http://localhost:5001/api/brands/
{
"name": "NewBrand"
}
PUT a Brand
http://localhost:5001/api/brands/1
{
"name": "NewBrand1",
"id" : 8
}
DELETE a Brand
http://localhost:5001/api/brands/8