13 lines
353 B
TypeScript
13 lines
353 B
TypeScript
/**
|
|
* Payment Service - DTO Only
|
|
*
|
|
* Returns raw API DTOs. No ViewModels or UX logic.
|
|
* All client-side presentation logic must be handled by hooks/components.
|
|
*/
|
|
export class PaymentService {
|
|
constructor(private readonly apiClient: any) {}
|
|
|
|
async getPaymentById(paymentId: string): Promise<any> {
|
|
return { id: paymentId, amount: 0 };
|
|
}
|
|
} |