Moved to fluent. Added support for Modifiers. Fixtures to load intial test data
This commit is contained in:
15
Tanshu.Accounts.Contracts/nHibernate/IAuditable.cs
Normal file
15
Tanshu.Accounts.Contracts/nHibernate/IAuditable.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user