8 lines
390 B
TypeScript
8 lines
390 B
TypeScript
import { IUserRepository } from '../../../Domain/IRepository/IUserRepository';
|
|
import { DeactivateUserCommand } from './DeactivateUserCommand';
|
|
export declare class DeactivateUserCommandHandler {
|
|
private readonly userRepo;
|
|
constructor(userRepo: IUserRepository);
|
|
execute(cmd: DeactivateUserCommand): Promise<boolean>;
|
|
}
|
|
//# sourceMappingURL=DeactivateUserCommandHandler.d.ts.map
|