- .NET web API (Swagger)
- All CRUD operations.
HTTP Methods:
CRUD
a. GET- Read
b. POST - Create
c. PUT- Update - Updates the whole records
d. DELETE - Delete
e. Patch - Update - can update parts of record - Annotations:
a. GET: [HttpGet]
b. POST: [HttpPost]
c. PUT: [HttPut]
d. DELETE: [HttpDelete] - app.UseCors(builder => builder .AllowAnyOrigin() .AllowAnyMethod() .AllowAnyHeader()); For Fetching
- React application to Fetch all the Data.
server: API <------------------------> Client: React

