move IEntity and IDto to Core.Abstractionns
This commit is contained in:
parent
ad734f77f9
commit
1c69eb48cd
@ -54,4 +54,8 @@
|
|||||||
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="9.0.5" />
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="9.0.5" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\DigitalData.Core.Abstractions\DigitalData.Core.Abstractions.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
using System.Linq.Expressions;
|
using System.Linq.Expressions;
|
||||||
|
using DigitalData.Core.Abstractions.Interfaces;
|
||||||
|
|
||||||
namespace DigitalData.Core.Abstraction.Application.Repository;
|
namespace DigitalData.Core.Abstraction.Application.Repository;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
using System.Linq.Expressions;
|
using DigitalData.Core.Abstractions.Interfaces;
|
||||||
|
using System.Linq.Expressions;
|
||||||
|
|
||||||
namespace DigitalData.Core.Abstraction.Application.Repository;
|
namespace DigitalData.Core.Abstraction.Application.Repository;
|
||||||
|
|
||||||
|
|||||||
@ -1,11 +1,4 @@
|
|||||||
namespace DigitalData.Core.Abstraction.Application.Repository;
|
namespace DigitalData.Core.Abstractions.Interfaces;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Ensures that extension methods are handled securely
|
|
||||||
/// </summary>
|
|
||||||
public interface IEntity
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Ensures that extension methods are handled securely
|
/// Ensures that extension methods are handled securely
|
||||||
8
DigitalData.Core.Abstractions/Interfaces/IEntity.cs
Normal file
8
DigitalData.Core.Abstractions/Interfaces/IEntity.cs
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
namespace DigitalData.Core.Abstractions.Interfaces;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Ensures that extension methods are handled securely
|
||||||
|
/// </summary>
|
||||||
|
public interface IEntity
|
||||||
|
{
|
||||||
|
}
|
||||||
@ -1,5 +1,6 @@
|
|||||||
using AutoMapper;
|
using AutoMapper;
|
||||||
using DigitalData.Core.Abstraction.Application.Repository;
|
using DigitalData.Core.Abstraction.Application.Repository;
|
||||||
|
using DigitalData.Core.Abstractions.Interfaces;
|
||||||
using DigitalData.Core.Infrastructure.Factory;
|
using DigitalData.Core.Infrastructure.Factory;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.Linq.Expressions;
|
using System.Linq.Expressions;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user