"Fix-order-details-for-customers"

This commit is contained in:
sysadmin
2025-08-27 23:35:30 +01:00
parent 1829e5c940
commit 5748ed4a09
8 changed files with 103 additions and 18 deletions

View File

@@ -8,6 +8,7 @@ public interface IOrderService
Task<ApiResponse<List<Order>>> GetOrdersByIdentityAsync(string identityReference);
Task<ApiResponse<List<Order>>> GetOrdersByCustomerIdAsync(Guid customerId);
Task<ApiResponse<Order>> GetOrderByIdAsync(Guid id);
Task<ApiResponse<Order>> GetOrderByCustomerIdAsync(Guid customerId, Guid orderId);
Task<ApiResponse<CryptoPayment>> CreatePaymentAsync(Guid orderId, int currency);
Task<ApiResponse<List<CryptoPayment>>> GetOrderPaymentsAsync(Guid orderId);
}