move IEntity and IDto to Core.Abstractionns

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

View File

@ -54,4 +54,8 @@
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="9.0.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DigitalData.Core.Abstractions\DigitalData.Core.Abstractions.csproj" />
</ItemGroup>
</Project>

View File

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

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;

View File

@ -1,11 +1,4 @@
namespace DigitalData.Core.Abstraction.Application.Repository;
/// <summary>
/// Ensures that extension methods are handled securely
/// </summary>
public interface IEntity
{
}
namespace DigitalData.Core.Abstractions.Interfaces;
/// <summary>
/// Ensures that extension methods are handled securely

View File

@ -0,0 +1,8 @@
namespace DigitalData.Core.Abstractions.Interfaces;
/// <summary>
/// Ensures that extension methods are handled securely
/// </summary>
public interface IEntity
{
}

View File

@ -1,5 +1,6 @@
using AutoMapper;
using DigitalData.Core.Abstraction.Application.Repository;
using DigitalData.Core.Abstractions.Interfaces;
using DigitalData.Core.Infrastructure.Factory;
using Microsoft.EntityFrameworkCore;
using System.Linq.Expressions;