Refactoring the legacy base ContentType class to better allow the usage of both new and old api.

A few of the shared properties are now saved by the new api for DocumentType and MediaType, whereas the MemberType still uses the old style.
This commit is contained in:
Morten Christensen
2012-12-19 10:13:56 -01:00
parent 3742a0b731
commit 2952990ad4
5 changed files with 267 additions and 154 deletions

View File

@@ -130,7 +130,7 @@ namespace Umbraco.Core.Models
get { return _alias; }
set
{
_alias = value;
_alias = value.ToUmbracoAlias(StringAliasCaseType.CamelCase, true);
OnPropertyChanged(AliasSelector);
}
}