Files
SerpentRace/SerpentRace_Backend/dist/Application/Contact/queries/GetContactByIdQueryHandler.d.ts
T

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