コード例 #1
0
ファイル: EmotionController.cs プロジェクト: dknauff/DreamAPI
        public IHttpActionResult Get()
        {
            EmotionService emotionService = CreateEmotionService();
            var            emotions       = emotionService.GetEmotions();

            return(Ok(emotions));
        }