Doing some more refinement on the record/handler relationship

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4041358
This commit is contained in:
loudej
2009-11-19 06:06:51 +00:00
parent baba3c3eca
commit f215b13393
24 changed files with 105 additions and 110 deletions

View File

@@ -4,10 +4,10 @@ using Orchard.Models.Driver;
using Orchard.Models.Records;
namespace Orchard.Tests.Models.Stubs {
public class Gamma : ContentItemPartWithRecord<GammaRecord> {
public class Gamma : ContentPartForRecord<GammaRecord> {
}
public class GammaRecord : ContentPartRecordBase {
public class GammaRecord : ContentPartRecord {
public virtual string Frap { get; set; }
}