Starting implementation of Dictionary and Language repositories and factories

This commit is contained in:
Morten@Thinkpad-X220
2012-10-08 13:14:59 -02:00
parent 60508a2327
commit 69f53b7dc5
11 changed files with 292 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using Umbraco.Core.Persistence;
namespace Umbraco.Core.Models.Rdbms
@@ -19,5 +20,8 @@ namespace Umbraco.Core.Models.Rdbms
[Column("key")]
public string Key { get; set; }
[ResultColumn]
public List<LanguageTextDto> LanguageTextDtos { get; set; }
}
}