示例#1
0
        public ActionResult AddInterpretation(string wordId, WordInterpretationDto interpretationDto)
        {
            var result = _maintainService.AddWordInterpretation(wordId, interpretationDto);

            return(OperationJsonResult(result));
        }