move IEntity and IDto to Core.Abstractionns

This commit is contained in:
2025-09-12 15:05:40 +02:00
parent ad734f77f9
commit 1c69eb48cd
6 changed files with 17 additions and 9 deletions

View File

@@ -1,4 +1,5 @@
using System.Linq.Expressions;
using DigitalData.Core.Abstractions.Interfaces;
namespace DigitalData.Core.Abstraction.Application.Repository;

View File

@@ -1,16 +0,0 @@
namespace DigitalData.Core.Abstraction.Application.Repository;
/// <summary>
/// Ensures that extension methods are handled securely
/// </summary>
public interface IEntity
{
}
/// <summary>
/// Ensures that extension methods are handled securely
/// </summary>
/// <typeparam name="Entity"></typeparam>
public interface IDto<Entity> where Entity : IEntity
{
}

View File

@@ -1,4 +1,5 @@
using System.Linq.Expressions;
using DigitalData.Core.Abstractions.Interfaces;
using System.Linq.Expressions;
namespace DigitalData.Core.Abstraction.Application.Repository;