9 lines
516 B
TypeScript
9 lines
516 B
TypeScript
import { IOrganizationRepository } from '../../../Domain/IRepository/IOrganizationRepository';
|
|
import { GetOrganizationByIdQuery } from './GetOrganizationByIdQuery';
|
|
import { ShortOrganizationDto } from '../../DTOs/OrganizationDto';
|
|
export declare class GetOrganizationByIdQueryHandler {
|
|
private readonly orgRepo;
|
|
constructor(orgRepo: IOrganizationRepository);
|
|
execute(query: GetOrganizationByIdQuery): Promise<ShortOrganizationDto | null>;
|
|
}
|
|
//# sourceMappingURL=GetOrganizationByIdQueryHandler.d.ts.map
|