9 lines
471 B
TypeScript
9 lines
471 B
TypeScript
import { IContactRepository } from '../../../Domain/IRepository/IContactRepository';
|
|
import { GetContactByIdQuery } from './GetContactByIdQuery';
|
|
import { DetailContactDto } from '../../DTOs/ContactDto';
|
|
export declare class GetContactByIdQueryHandler {
|
|
private readonly contactRepo;
|
|
constructor(contactRepo: IContactRepository);
|
|
execute(query: GetContactByIdQuery): Promise<DetailContactDto | null>;
|
|
}
|
|
//# sourceMappingURL=GetContactByIdQueryHandler.d.ts.map
|