Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 365 Bytes

File metadata and controls

10 lines (8 loc) · 365 Bytes

StudentManagementSystem

Basic Web API using CQRS and Mediator pattern

  • POST /api/student: for adding student

  • GET /api/student: getting list of all students

  • GET /api/student/{id}: getting a particular record of student by id

  • PUT /api/student/{id}: updating a student record

  • DELETE /api/student/{id}: deleting a student record

  • Used In-Memory Database