- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import { PaymentsService } from './payments.service';
|
|
export declare class PaymentsController {
|
|
private readonly paymentsService;
|
|
constructor(paymentsService: PaymentsService);
|
|
findAll(req: {
|
|
user: {
|
|
tenantId: string;
|
|
};
|
|
}): Promise<import("./entities/payment-method.entity").PaymentMethod[]>;
|
|
getDefault(req: {
|
|
user: {
|
|
tenantId: string;
|
|
};
|
|
}): Promise<import("./entities/payment-method.entity").PaymentMethod>;
|
|
findOne(req: {
|
|
user: {
|
|
tenantId: string;
|
|
};
|
|
}, id: string): Promise<import("./entities/payment-method.entity").PaymentMethod>;
|
|
initialize(req: {
|
|
user: {
|
|
tenantId: string;
|
|
};
|
|
}): Promise<import("./entities/payment-method.entity").PaymentMethod[]>;
|
|
toggleActive(req: {
|
|
user: {
|
|
tenantId: string;
|
|
};
|
|
}, id: string): Promise<import("./entities/payment-method.entity").PaymentMethod>;
|
|
setDefault(req: {
|
|
user: {
|
|
tenantId: string;
|
|
};
|
|
}, id: string): Promise<import("./entities/payment-method.entity").PaymentMethod>;
|
|
}
|