public void SetMemento(DocumentVersion documentVersion)
 {
     Content = documentVersion.Content;
 }
 public void AddDocumentVersion(DocumentVersion documentVersion)
 {
     int maxVersionId = mementoList.Keys.Count == 0 ? 0 : mementoList.Keys.Max();
     mementoList.Add(maxVersionId+1,documentVersion);
 }