Version Service

TODO: Add description of the Version service. 

Example: How to retrieve a specific, previous version of a content item

This example retrieves the next-to-most-recent version of myContentItem

IVersionManager versioner = Engine.Resolve<IVersionManager>(); 
var prev = versioner.GetVersion(myContentItem, myContentItem.VersionIndex - 1);