2025-02-24 19:00:28 +00:00
|
|
|
import { ICustomerRepository } from "@contexts/customer-billing/domain";
|
2025-02-25 15:25:30 +00:00
|
|
|
import { ICustomerInvoiceRepository } from "@contexts/customer-billing/domain/";
|
2025-02-24 19:00:28 +00:00
|
|
|
import { customerRepository } from "./customer.repository";
|
|
|
|
|
|
|
|
|
|
export * from "./customer.model";
|
|
|
|
|
export * from "./customer.repository";
|
|
|
|
|
|
2025-02-25 15:25:30 +00:00
|
|
|
export * from "./customer-invoice.model";
|
|
|
|
|
export * from "./customer-invoice.repository";
|
|
|
|
|
|
2025-02-24 19:00:28 +00:00
|
|
|
export const createCustomerRepository = (): ICustomerRepository => {
|
|
|
|
|
return customerRepository;
|
|
|
|
|
};
|
2025-02-25 15:25:30 +00:00
|
|
|
|
|
|
|
|
export const createCustomerInvoiceRepository = (): ICustomerInvoiceRepository => {
|
|
|
|
|
return customerRepository;
|
|
|
|
|
};
|