ighorpi / Product-API

ASP.NET Core 2.1 Web Api project with DDD

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Deploy to Azure

See the Brands examples here:

URL

https://localhost:5001/index.html

Product-API

GET all Brands

https://localhost:5001/api/brands/

Product-API

GET single Brand

https://localhost:5001/api/brands/1

Product-API

GET all Brands with Total Products

https://localhost:5001/api/brands/count

Product-API

POST a Brand

http://localhost:5001/api/brands/

  {
      "name": "NewBrand"
  }

Product-API

PUT a Brand

http://localhost:5001/api/brands/1

{
    "name": "NewBrand1",
    "id" : 8
}

Product-API

DELETE a Brand

http://localhost:5001/api/brands/8

Product-API

About

ASP.NET Core 2.1 Web Api project with DDD


Languages

Language:C# 100.0%