Liked it? Hit that star button
Creating and Reading operations on Sections aggregate.
git clone https://github.com/smh53/TavMobile
&& dotnet run --project .\src\WebApi
in the folder that has TavMobile.sln
POST /section
{
"name": "Android",
"description": "Phones that have Android OS",
"no": "101",
}
200 OK
{
"id": "00000000-0000-0000-0000-000000000000",
"name": "Android",
"description": "Phones that have Android OS",
"no": "101",
}
GET /section
200 Ok
{
"id": "00000000-0000-0000-0000-000000000000",
"name": "Android",
"description": "Phones that have Android OS",
"no": "101",
"id": "00000000-0000-0000-0000-000000000001",
"name": "IOS",
"description": "Phones that have IOS OS",
"no": "202",
}
This project is created for educational purposes. The source code is licensed under the MIT license.
This project is licensed under the terms of the MIT license.