8 lines
400 B
TypeScript
8 lines
400 B
TypeScript
import { IContactRepository } from '../../../Domain/IRepository/IContactRepository';
|
|
import { DeleteContactCommand } from './DeleteContactCommand';
|
|
export declare class DeleteContactCommandHandler {
|
|
private readonly contactRepo;
|
|
constructor(contactRepo: IContactRepository);
|
|
execute(cmd: DeleteContactCommand): Promise<boolean>;
|
|
}
|
|
//# sourceMappingURL=DeleteContactCommandHandler.d.ts.map
|