Files
SerpentRace/SerpentRace_Backend/dist/Application/Contact/commands/CreateContactCommandHandler.d.ts
T

9 lines
465 B
TypeScript

import { IContactRepository } from '../../../Domain/IRepository/IContactRepository';
import { CreateContactCommand } from './CreateContactCommand';
import { ShortContactDto } from '../../DTOs/ContactDto';
export declare class CreateContactCommandHandler {
private readonly contactRepo;
constructor(contactRepo: IContactRepository);
execute(cmd: CreateContactCommand): Promise<ShortContactDto>;
}
//# sourceMappingURL=CreateContactCommandHandler.d.ts.map