コード例 #1
0
        public async Task <ApiResponse> Create(TextDto textDto)
        {
            var text = await _textStore.Create(textDto);

            return(new ApiResponse(Status200OK, "Created text", text));
        }