using System; namespace oodb { public abstract class Persistent { public Guid PersistenceID { get; internal set; } public Persistent() { PersistenceID = Guid.NewGuid(); } } }