public void Update(PhrasesContext PhraseContext)
 {
     phrasesContext.Update(PhraseContext);
     phrasesContext.SaveChanges();
 }
 public void Add(PhrasesContext PhraseContext)
 {
     phrasesContext.Add(PhraseContext);
     phrasesContext.SaveChanges();
 }