EnVisageOnline/Main/Source/EnVisage/Models/Entities/ITimestampEntity.cs

19 lines
384 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EnVisage.Models.Entities
{
/// <summary>
/// Entity with Create and Update timestamp attributes
/// </summary>
/// <remarks>SA. ENV-1085</remarks>
public interface ITimestampEntity
{
void SetUpdatedTimestamp();
void SetCreatedTimestamp();
}
}