Skip to content
This repository has been archived by the owner on Apr 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #36 from nodes-dotnet/hotfix/repositories-non-abst…
Browse files Browse the repository at this point in the history
…ract

Hotfix/repositories non abstract
  • Loading branch information
Morten Turn Pedersen authored Jan 29, 2021
2 parents 5b80663 + bb601f8 commit af82135
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NetCoreEntityFramework/NetCoreEntityFramework.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>Nodes.NetCore.EntityFramework.Helpers</PackageId>
<Version>2.1.1</Version>
<Version>2.1.2</Version>
<Authors>Nodes</Authors>
<Company>Nodes</Company>
<Product>.NET Core Entity Framework Helpers</Product>
Expand Down
2 changes: 1 addition & 1 deletion NetCoreEntityFramework/Repositories/EntityRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace Nodes.NetCore.EntityFramework.Repositories
{
public abstract class EntityRepository<TEntity> : IEntityRepository<TEntity> where TEntity : EntityBase
public class EntityRepository<TEntity> : IEntityRepository<TEntity> where TEntity : EntityBase
{
protected DbContext Context { get; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace Nodes.NetCore.EntityFramework.Repositories
{
public abstract class EntitySoftDeleteRepository<TEntity> : EntityRepository<TEntity>, IEntitySoftDeleteRepository<TEntity> where TEntity : EntitySoftDeleteBase
public class EntitySoftDeleteRepository<TEntity> : EntityRepository<TEntity>, IEntitySoftDeleteRepository<TEntity> where TEntity : EntitySoftDeleteBase
{
protected EntitySoftDeleteRepository(DbContext context) : base(context)
{
Expand Down

0 comments on commit af82135

Please sign in to comment.