项目作者: HudsonLima

项目描述 :
ASP.NET Core 2.1 Web Api project with DDD
高级语言: C#
项目地址: git://github.com/HudsonLima/Product-API.git
创建时间: 2018-10-13T17:45:47Z
项目社区:https://github.com/HudsonLima/Product-API

开源协议:

下载


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/

  1. {
  2. "name": "NewBrand"
  3. }

Product-API

PUT a Brand

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

  1. {
  2. "name": "NewBrand1",
  3. "id" : 8
  4. }

Product-API

DELETE a Brand

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

Product-API