import { IUserOrganization } from '@metad/contracts'; import { ICommandHandler } from '@nestjs/cqrs'; import { I18nService } from 'nestjs-i18n'; import { RoleService } from '../../../role/role.service'; import { UserService } from '../../../user/user.service'; import { UserOrganizationService } from '../../user-organization.services'; import { UserOrganizationCreateCommand } from '../user-organization.create.command'; export declare class UserOrganizationCreateHandler implements ICommandHandler { private readonly userOrganizationService; private readonly userService; private readonly roleService; private readonly i18n; constructor(userOrganizationService: UserOrganizationService, userService: UserService, roleService: RoleService, i18n: I18nService); execute(command: UserOrganizationCreateCommand): Promise; }