16 lines
511 B
TypeScript
16 lines
511 B
TypeScript
import { ICustomerInvoiceRepository } from "@/contexts/customer-billing/domain/";
|
|
import { customerInvoiceRepository } from "./customer-invoice.repository";
|
|
|
|
export * from "./customer-invoice.model";
|
|
export * from "./customer.model";
|
|
|
|
export * from "./customer-invoice.repository";
|
|
|
|
/*export const createCustomerRepository = (): ICustomerRepository => {
|
|
return customerRepository;
|
|
};*/
|
|
|
|
export const createCustomerInvoiceRepository = (): ICustomerInvoiceRepository => {
|
|
return customerInvoiceRepository;
|
|
};
|