Phase 2: Backend API Implementation - DTOs, Services, and Controllers
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using Hospitality.Backend.DTOs;
|
||||
|
||||
namespace Hospitality.Backend.Services;
|
||||
|
||||
public interface ITransactionService
|
||||
{
|
||||
Task<TransactionResponse?> RecordTransactionAsync(CreateTransactionRequest request);
|
||||
Task<IEnumerable<TransactionResponse>> GetTransactionsByPersonIdAsync(Guid personId);
|
||||
Task<IEnumerable<TransactionResponse>> GetTransactionsByEventIdAsync(Guid eventId);
|
||||
}
|
||||
Reference in New Issue
Block a user