internal void RemoveRevision(int id) { var revision = Revisions.Find(r => r.ID == id); if (revision != null) { Revisions.Remove(revision); } }