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