Fixes up remaining routing tests, all tests passing (apart from arbitrary plugin mgr ones)

This commit is contained in:
Shannon
2015-01-22 15:42:29 +11:00
parent 2f86813a21
commit b892f98834
14 changed files with 292 additions and 283 deletions

View File

@@ -11,6 +11,11 @@ namespace Umbraco.Core.Models
[DataContract(IsReference = true)]
public class UmbracoDomain : Entity, IDomain
{
public UmbracoDomain(string domainName)
{
_domainName = domainName;
}
private IContent _content;
private ILanguage _language;
private string _domainName;