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 #39 from nodes-dotnet/develop
Browse files Browse the repository at this point in the history
Deploy
  • Loading branch information
Morten Turn Pedersen authored Feb 1, 2021
2 parents af82135 + d215800 commit fee89f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 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.2</Version>
<Version>2.1.3</Version>
<Authors>Nodes</Authors>
<Company>Nodes</Company>
<Product>.NET Core Entity Framework Helpers</Product>
Expand All @@ -13,6 +13,7 @@
<PackageIcon>Nodes logo.png</PackageIcon>
<RepositoryUrl>https://github.com/nodes-dotnet/net-core-entity-framework</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion NetCoreEntityFramework/Repositories/EntityRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class EntityRepository<TEntity> : IEntityRepository<TEntity> where TEntit
{
protected DbContext Context { get; }

protected EntityRepository(DbContext context)
public EntityRepository(DbContext context)
{
Context = context;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Nodes.NetCore.EntityFramework.Repositories
{
public class EntitySoftDeleteRepository<TEntity> : EntityRepository<TEntity>, IEntitySoftDeleteRepository<TEntity> where TEntity : EntitySoftDeleteBase
{
protected EntitySoftDeleteRepository(DbContext context) : base(context)
public EntitySoftDeleteRepository(DbContext context) : base(context)
{
}

Expand Down

0 comments on commit fee89f0

Please sign in to comment.