Uecko_ERP/apps/server/archive/contexts/customer-billing/infraestructure/sequelize/index.ts

16 lines
511 B
TypeScript
Raw Normal View History

2025-05-02 21:43:51 +00:00
import { ICustomerInvoiceRepository } from "@/contexts/customer-billing/domain/";
2025-03-04 17:08:33 +00:00
import { customerInvoiceRepository } from "./customer-invoice.repository";
2025-02-24 19:00:28 +00:00
2025-03-04 17:08:33 +00:00
export * from "./customer-invoice.model";
2025-02-24 19:00:28 +00:00
export * from "./customer.model";
2025-02-25 15:25:30 +00:00
export * from "./customer-invoice.repository";
2025-03-04 17:08:33 +00:00
/*export const createCustomerRepository = (): ICustomerRepository => {
2025-02-24 19:00:28 +00:00
return customerRepository;
2025-03-04 17:08:33 +00:00
};*/
2025-02-25 15:25:30 +00:00
export const createCustomerInvoiceRepository = (): ICustomerInvoiceRepository => {
2025-03-04 17:08:33 +00:00
return customerInvoiceRepository;
2025-02-25 15:25:30 +00:00
};