public IHttpActionResult Post([FromBody] TweetModel tweetModel) { _tweetRepository.Save(tweetModel); return(StatusCode(HttpStatusCode.Created)); }