Пример #1
0
        public async Task <Interview> CreateInterview(InterviewCreateCommand interviewCreateCommand)
        {
            _logger.LogInformation("Creating interview with command {@InterviewCreateCommand}", interviewCreateCommand);
            var interview = InterviewCreateCommand.MapToInterview(interviewCreateCommand);

            return(await _interviewService.CreateAsync(interview));
        }