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
|
|
|
}
|