Phase 2: Backend API Implementation - DTOs, Services, and Controllers

This commit is contained in:
steinhelge
2025-11-23 15:55:03 +01:00
parent 0661bebd87
commit 9ed5adbfb5
22 changed files with 1066 additions and 33 deletions
@@ -0,0 +1,18 @@
namespace Hospitality.Backend.DTOs;
public record CreateTransactionRequest(
Guid QrCode,
Guid ProductId,
int Amount
);
public record TransactionResponse(
Guid Id,
Guid PersonId,
string PersonName,
Guid ProductId,
string ProductName,
int Amount,
DateTime Timestamp,
Guid? StaffId
);