Refactoring UpdateContentCache strategy for generating xml cache upon publishing indepedent of the legacy umbraco.content.Instance class.

This commit is contained in:
sitereactor
2012-11-06 20:03:36 -01:00
parent 9b77eefb4c
commit 372f7a7725
10 changed files with 138 additions and 22 deletions

View File

@@ -32,8 +32,9 @@ namespace Umbraco.Core.Models
Value = value;
}
public Property(PropertyType propertyType, object value, Guid version)
public Property(int id, Guid version, PropertyType propertyType, object value)
{
Id = id;
_propertyType = propertyType;
_version = version;
Value = value;