feat: wip migrate to nestjs

This commit is contained in:
Ahmed Bouhuolia
2024-12-26 15:40:29 +02:00
parent a6932d76f3
commit cd84872a61
96 changed files with 2051 additions and 745 deletions

View File

@@ -23,7 +23,7 @@ export class BillsApplication {
private deleteBillService: DeleteBill,
private getDueBillsService: GetDueBills,
private openBillService: OpenBillService,
private getBillPaymentsService: GetBillPayments,
// private getBillPaymentsService: GetBillPayments,
) {}
/**
@@ -99,7 +99,7 @@ export class BillsApplication {
* @param {number} tenantId
* @param {number} billId
*/
public getBillPayments(billId: number) {
return this.getBillPaymentsService.getBillPayments(billId);
}
// public getBillPayments(billId: number) {
// return this.getBillPaymentsService.getBillPayments(billId);
// }
}