narsil/Tanshu.Accounts.Contracts/nHibernate/IAuditable.cs

16 lines
370 B
C#

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);
}
}