## Description Expose the data stored in the database to the client. ## Acceptance Criteria - [ ] `GET /api/history`: Returns a summary of the last 10–20 recipes, including `ID`, `Name`, and `Date`. - [ ] `GET /api/history/{id}`: Returns the full details and ingredient list for a specific recipe record. - [ ] Ensure the server properly maps DB entities to the DTOs used by the client.
Description
Expose the data stored in the database to the client.
Acceptance Criteria
GET /api/history: Returns a summary of the last 10–20 recipes, includingID,Name, andDate.GET /api/history/{id}: Returns the full details and ingredient list for a specific recipe record.