interface type fixes & unit test improvements

This commit is contained in:
Hasan Manzak
2023-02-23 01:11:34 +03:00
parent b73f748dba
commit 7ec97810f7
17 changed files with 884 additions and 586 deletions

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

View File

@@ -0,0 +1,10 @@
using System;
namespace SieveUnitTests.Abstractions.Strategy
{
public interface ISupportSoftDelete
{
string DeletedBy { get; }
DateTime? DeletedAt { get; }
}
}