public void Edit(CommentaryDTO commentary)
 {
     _fabric.CreateCommentsRepository().Update(commentary.ToEntity());
 }
 public void Delete(CommentaryDTO commentary)
 {
     _fabric.CreateCommentsRepository().Delete(commentary.ToEntity());
 }