10 lines
452 B
TypeScript
10 lines
452 B
TypeScript
import { IUserRepository } from '../../../Domain/IRepository/IUserRepository';
|
|
import { CreateUserCommand } from './CreateUserCommand';
|
|
import { ShortUserDto } from '../../DTOs/UserDto';
|
|
export declare class CreateUserCommandHandler {
|
|
private readonly userRepo;
|
|
private emailService;
|
|
constructor(userRepo: IUserRepository);
|
|
execute(cmd: CreateUserCommand): Promise<ShortUserDto>;
|
|
}
|
|
//# sourceMappingURL=CreateUserCommandHandler.d.ts.map
|