Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 1.61 KB

File metadata and controls

26 lines (22 loc) · 1.61 KB

< Return to README

Details

The RESTful Web API Source Code Solution implements two primary services:

Ticket List Service

  • CRUD Operations:

    • Create: Add a new "Ticket Item" using POST method with InputDTO model and AutoMapper extension.
    • Update: Update an existing "Ticket Item" using PATCH method with JsonPatchDocument extension.
    • Read: Return a single "Ticket Item" using GET method.
    • Read (List): Return a list of "Ticket Items" using GET method.
    • Delete: Remove a "Ticket Item" using DELETE method.
  • Ticket object definition:

    • Id
    • EventName
    • Description
    • EventDate (Date and Time)
    • TicketNumber (Computed class property based on EventDate and ticket Id)

Miscellaneous Service

  • Endpoints:
    • Fibonacci Sequence: Calculate Fibonacci sequence numbers up to a specified maximum value.
    • Palindrome Words: Determine which words are palindromes from a given list of words.

< Return to README