mirror of
https://github.com/Biarity/Sieve.git
synced 2025-09-20 23:29:39 +02:00
interface type fixes & unit test improvements
This commit is contained in:
12
SieveUnitTests/Abstractions/Strategy/IAudit.cs
Normal file
12
SieveUnitTests/Abstractions/Strategy/IAudit.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace SieveUnitTests.Abstractions.Strategy
|
||||
{
|
||||
public interface IAudit
|
||||
{
|
||||
string CreatedBy { get; }
|
||||
DateTime? CreatedAt { get; }
|
||||
string UpdatedBy { get; }
|
||||
DateTime? UpdatedAt { get; }
|
||||
}
|
||||
}
|
10
SieveUnitTests/Abstractions/Strategy/ISupportSoftDelete.cs
Normal file
10
SieveUnitTests/Abstractions/Strategy/ISupportSoftDelete.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
|
||||
namespace SieveUnitTests.Abstractions.Strategy
|
||||
{
|
||||
public interface ISupportSoftDelete
|
||||
{
|
||||
string DeletedBy { get; }
|
||||
DateTime? DeletedAt { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user