13 lines
220 B
C#
13 lines
220 B
C#
using Contracts.DTO;
|
|
|
|
namespace Services.Tests.Support.Fakes.Database;
|
|
|
|
internal static class DbFake
|
|
{
|
|
public static List<UserDto> Users = new();
|
|
|
|
public static void ClearDb()
|
|
{
|
|
Users.Clear();
|
|
}
|
|
} |