https://github.com/hurricanemark/hplussport.api
Building Web APIs with ASP.NET Core in .NET
https://github.com/hurricanemark/hplussport.api
Last synced: 4 months ago
JSON representation
Building Web APIs with ASP.NET Core in .NET
- Host: GitHub
- URL: https://github.com/hurricanemark/hplussport.api
- Owner: hurricanemark
- Created: 2023-08-04T06:17:55.000Z (over 2 years ago)
- Default Branch: baseline1
- Last Pushed: 2023-08-11T23:13:03.000Z (over 2 years ago)
- Last Synced: 2025-01-27T05:27:11.325Z (10 months ago)
- Language: C#
- Size: 385 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Building Web APIs with ASP.NET Core in .NET
*Development environment: Visual Studio 2022*
*Language: C-Sharp*
*References: LinkedIn Learning by Christian Wenz*
**REST with HTTP Methods (CRUD)**
| HTTP Methods | Function |
|---|---|
| GET | Read data |
| POST | Create new data |
| PUT | Update existing data |
| DELETE | Delete existing data |
**Note**
`modelBuilder.UseInMemoryDatabase` is implemented. Data is flushed when program terminated.
### Runtime output
The **GET** method retrieves all products.

The **POST** method creates a new product.

### Additional References:
[Hshopsport](https://hplussport.com/shop/)