Uecko_ERP/modules/customers/src/api/application/di/customer-finder.di.ts

7 lines
260 B
TypeScript
Raw Normal View History

2026-03-07 21:39:21 +00:00
import type { ICustomerRepository } from "../repositories";
import { CustomerFinder, type ICustomerFinder } from "../services";
2026-03-07 18:27:23 +00:00
2026-03-07 21:39:21 +00:00
export function buildCustomerFinder(repository: ICustomerRepository): ICustomerFinder {
return new CustomerFinder(repository);
2026-03-07 18:27:23 +00:00
}