@mbc-cqrs-serverless/survey-template
Version:
11 lines (10 loc) • 546 B
TypeScript
import { IInvoke } from '@mbc-cqrs-serverless/core';
import { SurveyAnswerCreateDto } from './dto/survey-answer-create.dto';
import { SurveyAnswerDataEntity } from './entity/survey-answer-data.entity';
import { SurveyAnswerService } from './survey-answer.service';
export declare class SurveyAnswerController {
private readonly surveyAnswerService;
private readonly logger;
constructor(surveyAnswerService: SurveyAnswerService);
create(invokeContext: IInvoke, createDto: SurveyAnswerCreateDto): Promise<SurveyAnswerDataEntity>;
}