Moved to fluent. Added support for Modifiers. Fixtures to load intial test data

This commit is contained in:
unknown
2011-01-30 12:44:05 +05:30
parent c841dc25f4
commit eb48c3754a
272 changed files with 10470 additions and 47160 deletions

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Tanshu.Accounts.Contracts.Nhibernate
{
public interface IAuditable
{
DateTime CreationDate { get; }
DateTime LastEditDate { get; }
void SetCreationDate(DateTime creationDate);
void SetLastEditDate(DateTime creationDate);
}
}