public IEnumerable <string> Post([FromBody] string sentence)
 {
     if (!string.IsNullOrWhiteSpace(sentence) && sentence.Length > 5)
     {
         storyDbContext.StoryItems.Add(new StoryItem {
             Sentence = sentence.Trim(), DateCreated = DateTime.Now
         });
         storyDbContext.SaveChanges();
     }
     return(Get());
 }
 public void Done()
 {
     context.SaveChanges();
 }