コード例 #1
0
        public TweetModel GetTweetById(string tweetId)
        {
            TweetModel tweetModel = new TweetModel();

            tweetModel = _tweetRepository.FindByCondition(tweetId);

            return(tweetModel);
        }