Skip to content

Commit 12c1634

Browse files
committed
Rename Repository to more apt DatabaseRepository
1 parent 91be4b0 commit 12c1634

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

IntegrationEngine.Core/IntegrationEngine.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@
9999
<Compile Include="Storage\IntegrationEngineContext.cs" />
100100
<Compile Include="Storage\IntegrationEngineDbConfiguration.cs" />
101101
<Compile Include="Storage\IRepository.cs" />
102-
<Compile Include="Storage\Repository.cs" />
103102
<Compile Include="Jobs\IElasticsearchJob.cs" />
104103
<Compile Include="Storage\IElasticsearchRepository.cs" />
105104
<Compile Include="Storage\ElasticsearchRepository.cs" />
106105
<Compile Include="Storage\IDatabaseRepository.cs" />
106+
<Compile Include="Storage\DatabaseRepository.cs" />
107107
</ItemGroup>
108108
<ItemGroup>
109109
<None Include="App.config" />

IntegrationEngine.Core/Storage/Repository.cs renamed to IntegrationEngine.Core/Storage/DatabaseRepository.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77

88
namespace IntegrationEngine.Core.Storage
99
{
10-
public class Repository : IDatabaseRepository
10+
public class DatabaseRepository : IDatabaseRepository
1111
{
1212
public ILog Log { get; set; }
1313
public IntegrationEngineContext db = null;
1414

15-
public Repository()
15+
public DatabaseRepository()
1616
{
1717
}
1818

19-
public Repository(IntegrationEngineContext db)
19+
public DatabaseRepository(IntegrationEngineContext db)
2020
{
2121
this.db = db;
2222
}

0 commit comments

Comments
 (0)