refactor: tax rates to nestjs

This commit is contained in:
Ahmed Bouhuolia
2024-12-20 12:24:50 +02:00
parent 1f32a7c59a
commit 330192c042
29 changed files with 1631 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
// import { Inject, Service } from 'typedi';
// import { Exportable } from '../Export/Exportable';
// import { TaxRatesApplication } from './TaxRate.application';
// @Service()
// export class TaxRatesExportable extends Exportable {
// @Inject()
// private taxRatesApplication: TaxRatesApplication;
// /**
// * Retrieves the accounts data to exportable sheet.
// * @param {number} tenantId
// * @returns
// */
// public exportable(tenantId: number) {
// return this.taxRatesApplication.getTaxRates(tenantId);
// }
// }