Skip to content

Commit

Permalink
refac: 0. Refactor MasterData module to clean architecture (#1344)
Browse files Browse the repository at this point in the history
* Refactored MasterData module to clean architecture

* Create wrapper interface for MasterDataContext

---------

Co-authored-by: Ebbe Knudsen <[email protected]>
  • Loading branch information
AndersBallingPetersen and ebbeknudsen authored Nov 15, 2024
1 parent 10729db commit c6c19d2
Show file tree
Hide file tree
Showing 34 changed files with 120 additions and 110 deletions.
2 changes: 1 addition & 1 deletion source/B2BApi/B2BApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ limitations under the License.
<ProjectReference Include="..\IncomingMessages.Interfaces\IncomingMessages.Interfaces.csproj" />
<ProjectReference Include="..\IntegrationEvents.Application\IntegrationEvents.Application.csproj" />
<ProjectReference Include="..\IntegrationEvents.Infrastructure\IntegrationEvents.Infrastructure.csproj" />
<ProjectReference Include="..\MasterData.Application\MasterData.Application.csproj" />
<ProjectReference Include="..\MasterData.Infrastructure\MasterData.Infrastructure.csproj" />
<ProjectReference Include="..\MasterData.Interfaces\MasterData.Interfaces.csproj" />
<ProjectReference Include="..\Outbox.Infrastructure\Outbox.Infrastructure.csproj" />
<ProjectReference Include="..\OutgoingMessages.Application\OutgoingMessages.Application.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion source/B2BApi/HostFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
using Energinet.DataHub.EDI.DataAccess.UnitOfWork.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.IncomingMessages.Application.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.IntegrationEvents.Application.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.MasterData.Application.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.MasterData.Infrastructure.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.Outbox.Infrastructure;
using Energinet.DataHub.EDI.OutgoingMessages.Application.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.Process.Application.Extensions.DependencyInjection;
Expand Down
34 changes: 17 additions & 17 deletions source/B2CWebApi/B2CWebApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,33 +8,33 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Energinet.DataHub.Core.App.WebApp" Version="13.2.0"/>
<PackageReference Include="Energinet.DataHub.Core.App.WebApp" Version="13.2.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.11" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0"/>
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="2.13.6"/>
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0"/>
<PackageReference Include="Microsoft.OpenApi" Version="1.6.22"/>
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="2.13.6" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
<PackageReference Include="Microsoft.OpenApi" Version="1.6.22" />
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.11.20">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.7.3"/>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.7.3" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\ArchivedMessages.Application\ArchivedMessages.Application.csproj"/>
<ProjectReference Include="..\ArchivedMessages.Interfaces\ArchivedMessages.Interfaces.csproj"/>
<ProjectReference Include="..\AuditLog\AuditLog.csproj"/>
<ProjectReference Include="..\BuildingBlocks.Application\BuildingBlocks.Application.csproj"/>
<ProjectReference Include="..\BuildingBlocks.Domain\BuildingBlocks.Domain.csproj"/>
<ProjectReference Include="..\DataAccess.UnitOfWork\DataAccess.UnitOfWork.csproj"/>
<ProjectReference Include="..\IncomingMessages.Application\IncomingMessages.Application.csproj"/>
<ProjectReference Include="..\IncomingMessages.Interfaces\IncomingMessages.Interfaces.csproj"/>
<ProjectReference Include="..\ArchivedMessages.Application\ArchivedMessages.Application.csproj" />
<ProjectReference Include="..\ArchivedMessages.Interfaces\ArchivedMessages.Interfaces.csproj" />
<ProjectReference Include="..\AuditLog\AuditLog.csproj" />
<ProjectReference Include="..\BuildingBlocks.Application\BuildingBlocks.Application.csproj" />
<ProjectReference Include="..\BuildingBlocks.Domain\BuildingBlocks.Domain.csproj" />
<ProjectReference Include="..\DataAccess.UnitOfWork\DataAccess.UnitOfWork.csproj" />
<ProjectReference Include="..\IncomingMessages.Application\IncomingMessages.Application.csproj" />
<ProjectReference Include="..\IncomingMessages.Interfaces\IncomingMessages.Interfaces.csproj" />
<!--PLEASE DO NOT REMOVE THE REFERENCE TO INCOMINGMESSAGES.INFRASTRUCTURE! DOING SO WILL BREAK THE SCHEMA LOOKUP!-->
<ProjectReference Include="..\IncomingMessages.Infrastructure\IncomingMessages.Infrastructure.csproj"/>
<ProjectReference Include="..\IncomingMessages.Infrastructure\IncomingMessages.Infrastructure.csproj" />
<!--READ THE COMMENT ABOVE-->
<ProjectReference Include="..\MasterData.Application\MasterData.Application.csproj"/>
<ProjectReference Include="..\Outbox.Infrastructure\Outbox.Infrastructure.csproj"/>
<ProjectReference Include="..\MasterData.Infrastructure\MasterData.Infrastructure.csproj" />
<ProjectReference Include="..\Outbox.Infrastructure\Outbox.Infrastructure.csproj" />
</ItemGroup>

<ItemDefinitionGroup>
Expand Down
2 changes: 1 addition & 1 deletion source/B2CWebApi/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
using Energinet.DataHub.EDI.B2CWebApi.Security;
using Energinet.DataHub.EDI.DataAccess.UnitOfWork.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.IncomingMessages.Application.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.MasterData.Application.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.MasterData.Infrastructure.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.Outbox.Infrastructure;

var builder = WebApplication.CreateBuilder(args);
Expand Down
42 changes: 21 additions & 21 deletions source/Edi.Repository.sln
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{1DEA9C4F
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MasterData.IntegrationTests", "MasterData.IntegrationTests\MasterData.IntegrationTests.csproj", "{0EA98CF7-1E71-4FFE-9825-A9EA22701E6D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MasterData.Application", "MasterData.Application\MasterData.Application.csproj", "{104BEB59-8E92-4517-8141-620073B89887}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MasterData.Domain", "MasterData.Domain\MasterData.Domain.csproj", "{CDB51D9E-3D69-4E37-A9D4-B12E04722078}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MasterData.Infrastructure", "MasterData.Infrastructure\MasterData.Infrastructure.csproj", "{17E5D9E6-C482-47C5-BABA-56ACFA13BD43}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MasterData.Interfaces", "MasterData.Interfaces\MasterData.Interfaces.csproj", "{03330B59-67CF-426E-AB61-1F87137E10F4}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Outbox", "Outbox", "{C31C36C8-7661-4782-9915-E8278CD4DFEA}"
Expand Down Expand Up @@ -206,6 +200,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProcessManager.Core.Tests",
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProcessManager.Orchestrations.Tests", "ProcessManager.Orchestrations.Tests\ProcessManager.Orchestrations.Tests.csproj", "{6E524405-2B66-4563-B043-492DB8734060}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MasterData.Infrastructure", "MasterData.Infrastructure\MasterData.Infrastructure.csproj", "{61571A46-1145-4FF9-9C91-47C33520B53A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MasterData.Application", "MasterData.Application\MasterData.Application.csproj", "{0E787394-5AD2-4920-900F-E802EDB726B6}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MasterData.Domain", "MasterData.Domain\MasterData.Domain.csproj", "{4A238A51-ED28-4039-8046-ED7B1336C614}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -328,18 +328,6 @@ Global
{0EA98CF7-1E71-4FFE-9825-A9EA22701E6D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0EA98CF7-1E71-4FFE-9825-A9EA22701E6D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0EA98CF7-1E71-4FFE-9825-A9EA22701E6D}.Release|Any CPU.Build.0 = Release|Any CPU
{104BEB59-8E92-4517-8141-620073B89887}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{104BEB59-8E92-4517-8141-620073B89887}.Debug|Any CPU.Build.0 = Debug|Any CPU
{104BEB59-8E92-4517-8141-620073B89887}.Release|Any CPU.ActiveCfg = Release|Any CPU
{104BEB59-8E92-4517-8141-620073B89887}.Release|Any CPU.Build.0 = Release|Any CPU
{CDB51D9E-3D69-4E37-A9D4-B12E04722078}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CDB51D9E-3D69-4E37-A9D4-B12E04722078}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CDB51D9E-3D69-4E37-A9D4-B12E04722078}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CDB51D9E-3D69-4E37-A9D4-B12E04722078}.Release|Any CPU.Build.0 = Release|Any CPU
{17E5D9E6-C482-47C5-BABA-56ACFA13BD43}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{17E5D9E6-C482-47C5-BABA-56ACFA13BD43}.Debug|Any CPU.Build.0 = Debug|Any CPU
{17E5D9E6-C482-47C5-BABA-56ACFA13BD43}.Release|Any CPU.ActiveCfg = Release|Any CPU
{17E5D9E6-C482-47C5-BABA-56ACFA13BD43}.Release|Any CPU.Build.0 = Release|Any CPU
{03330B59-67CF-426E-AB61-1F87137E10F4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{03330B59-67CF-426E-AB61-1F87137E10F4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{03330B59-67CF-426E-AB61-1F87137E10F4}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down Expand Up @@ -452,6 +440,18 @@ Global
{6E524405-2B66-4563-B043-492DB8734060}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6E524405-2B66-4563-B043-492DB8734060}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6E524405-2B66-4563-B043-492DB8734060}.Release|Any CPU.Build.0 = Release|Any CPU
{61571A46-1145-4FF9-9C91-47C33520B53A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{61571A46-1145-4FF9-9C91-47C33520B53A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{61571A46-1145-4FF9-9C91-47C33520B53A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{61571A46-1145-4FF9-9C91-47C33520B53A}.Release|Any CPU.Build.0 = Release|Any CPU
{0E787394-5AD2-4920-900F-E802EDB726B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0E787394-5AD2-4920-900F-E802EDB726B6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0E787394-5AD2-4920-900F-E802EDB726B6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0E787394-5AD2-4920-900F-E802EDB726B6}.Release|Any CPU.Build.0 = Release|Any CPU
{4A238A51-ED28-4039-8046-ED7B1336C614}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4A238A51-ED28-4039-8046-ED7B1336C614}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4A238A51-ED28-4039-8046-ED7B1336C614}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4A238A51-ED28-4039-8046-ED7B1336C614}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -509,9 +509,6 @@ Global
{ED4BC8EC-5C20-4250-B2DD-9FEAEF726D8E} = {5E56C03C-09BD-4F47-917E-4D5B03E4EE0E}
{1DEA9C4F-02C5-4D91-A6B4-F87421FDE638} = {ED4BC8EC-5C20-4250-B2DD-9FEAEF726D8E}
{0EA98CF7-1E71-4FFE-9825-A9EA22701E6D} = {1DEA9C4F-02C5-4D91-A6B4-F87421FDE638}
{104BEB59-8E92-4517-8141-620073B89887} = {ED4BC8EC-5C20-4250-B2DD-9FEAEF726D8E}
{CDB51D9E-3D69-4E37-A9D4-B12E04722078} = {ED4BC8EC-5C20-4250-B2DD-9FEAEF726D8E}
{17E5D9E6-C482-47C5-BABA-56ACFA13BD43} = {ED4BC8EC-5C20-4250-B2DD-9FEAEF726D8E}
{03330B59-67CF-426E-AB61-1F87137E10F4} = {ED4BC8EC-5C20-4250-B2DD-9FEAEF726D8E}
{C31C36C8-7661-4782-9915-E8278CD4DFEA} = {5E56C03C-09BD-4F47-917E-4D5B03E4EE0E}
{7F858416-5101-4CAE-A7CE-7C7DE65C7465} = {C31C36C8-7661-4782-9915-E8278CD4DFEA}
Expand Down Expand Up @@ -548,6 +545,9 @@ Global
{866DFC4D-9E52-4DC9-B745-E47A2B12822F} = {A1D87C36-B279-40DB-8C75-B74453458A02}
{8E6CCEC1-0CD6-464B-A101-24E166715BD7} = {9CB2AEDE-FAB7-405B-913F-3E7E673F962D}
{6E524405-2B66-4563-B043-492DB8734060} = {BF4FFF69-2FAA-4C40-A781-ABC5EABEA258}
{61571A46-1145-4FF9-9C91-47C33520B53A} = {ED4BC8EC-5C20-4250-B2DD-9FEAEF726D8E}
{0E787394-5AD2-4920-900F-E802EDB726B6} = {ED4BC8EC-5C20-4250-B2DD-9FEAEF726D8E}
{4A238A51-ED28-4039-8046-ED7B1336C614} = {ED4BC8EC-5C20-4250-B2DD-9FEAEF726D8E}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8C390B97-896A-4AAD-8609-3C20E80966D2}
Expand Down
2 changes: 1 addition & 1 deletion source/Edi.UnitTests/Edi.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
<ProjectReference Include="..\DataAccess.UnitOfWork\DataAccess.UnitOfWork.csproj" />
<ProjectReference Include="..\DataAccess\DataAccess.csproj" />
<ProjectReference Include="..\Edi\Edi.csproj" />
<ProjectReference Include="..\MasterData.Application\MasterData.Application.csproj" />
<ProjectReference Include="..\MasterData.Infrastructure\MasterData.Infrastructure.csproj" />
</ItemGroup>
</Project>
6 changes: 1 addition & 5 deletions source/Edi.UnitTests/EdiTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,16 @@
// limitations under the License.

using BuildingBlocks.Application.Extensions.DependencyInjection;
using Energinet.DataHub.BuildingBlocks.Tests;
using Energinet.DataHub.BuildingBlocks.Tests.Logging;
using Energinet.DataHub.Core.App.Common.Extensions.DependencyInjection;
using Energinet.DataHub.Core.Messaging.Communication.Extensions.Options;
using Energinet.DataHub.EDI.DataAccess.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.DataAccess.UnitOfWork.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.MasterData.Application.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.MasterData.Infrastructure.Extensions.DependencyInjection;
using Energinet.DataHub.Wholesale.Edi.Extensions.DependencyInjection;
using Energinet.DataHub.Wholesale.Edi.Validation;
using Energinet.DataHub.Wholesale.Edi.Validation.Helpers;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Microsoft.Extensions.Logging;
using Xunit.Abstractions;

namespace Energinet.DataHub.Wholesale.Edi.UnitTests;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--
<!--
Copyright 2020 Energinet DataHub A/S
Licensed under the Apache License, Version 2.0 (the "License2");
Expand Down Expand Up @@ -73,7 +73,7 @@ limitations under the License.
<ProjectReference Include="..\IncomingMessages.Application\IncomingMessages.Application.csproj" />
<ProjectReference Include="..\IncomingMessages.Infrastructure\IncomingMessages.Infrastructure.csproj" />
<ProjectReference Include="..\IncomingMessages.Interfaces\IncomingMessages.Interfaces.csproj" />
<ProjectReference Include="..\MasterData.Application\MasterData.Application.csproj" />
<ProjectReference Include="..\MasterData.Infrastructure\MasterData.Infrastructure.csproj" />
<ProjectReference Include="..\MasterData.Interfaces\MasterData.Interfaces.csproj" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
using BuildingBlocks.Application.Extensions.DependencyInjection;
using BuildingBlocks.Application.FeatureFlag;
using Dapper;
using Energinet.DataHub.BuildingBlocks.Tests;
using Energinet.DataHub.BuildingBlocks.Tests.Logging;
using Energinet.DataHub.BuildingBlocks.Tests.TestDoubles;
using Energinet.DataHub.Core.Messaging.Communication.Extensions.Options;
Expand All @@ -31,11 +30,10 @@
using Energinet.DataHub.EDI.IncomingMessages.Infrastructure.Configuration.DataAccess;
using Energinet.DataHub.EDI.IncomingMessages.Infrastructure.Configuration.Options;
using Energinet.DataHub.EDI.IncomingMessages.IntegrationTests.Fixtures;
using Energinet.DataHub.EDI.MasterData.Application.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.MasterData.Infrastructure.Extensions.DependencyInjection;
using Microsoft.Extensions.Azure;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Microsoft.IdentityModel.JsonWebTokens;
using Microsoft.IdentityModel.Tokens;
using NodaTime;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using Energinet.DataHub.BuildingBlocks.Tests;
using Energinet.DataHub.BuildingBlocks.Tests.Logging;
using Energinet.DataHub.Core.App.Common.Extensions.DependencyInjection;
using Energinet.DataHub.Core.Messaging.Communication.Extensions.Options;
using Energinet.DataHub.EDI.IntegrationEvents.Application.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.MasterData.Application.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.MasterData.Infrastructure.Extensions.DependencyInjection;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Microsoft.Extensions.Logging;
using Xunit;
using Xunit.Abstractions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<ProjectReference Include="..\BuildingBlocks.Tests\BuildingBlocks.Tests.csproj" />
<ProjectReference Include="..\Contracts\Contracts.csproj" />
<ProjectReference Include="..\IntegrationEvents.Application\IntegrationEvents.Application.csproj" />
<ProjectReference Include="..\MasterData.Application\MasterData.Application.csproj" />
<ProjectReference Include="..\MasterData.Infrastructure\MasterData.Infrastructure.csproj" />
</ItemGroup>

<ItemDefinitionGroup>
Expand Down
2 changes: 1 addition & 1 deletion source/IntegrationTests/Behaviours/BehavioursTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
using Energinet.DataHub.EDI.IntegrationTests.Infrastructure.Authentication.MarketActors;
using Energinet.DataHub.EDI.IntegrationTests.Infrastructure.Configuration.InternalCommands;
using Energinet.DataHub.EDI.IntegrationTests.Infrastructure.InboxEvents;
using Energinet.DataHub.EDI.MasterData.Application.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.MasterData.Infrastructure.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.MasterData.Interfaces;
using Energinet.DataHub.EDI.MasterData.Interfaces.Models;
using Energinet.DataHub.EDI.OutgoingMessages.Application.Extensions.DependencyInjection;
Expand Down
2 changes: 1 addition & 1 deletion source/IntegrationTests/IntegrationTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ limitations under the License.
<ProjectReference Include="..\IncomingMessages.IntegrationTests\IncomingMessages.IntegrationTests.csproj" />
<ProjectReference Include="..\IntegrationEvents.Application\IntegrationEvents.Application.csproj" />
<ProjectReference Include="..\IntegrationEvents.IntegrationTests\IntegrationEvents.IntegrationTests.csproj" />
<ProjectReference Include="..\MasterData.Application\MasterData.Application.csproj" />
<ProjectReference Include="..\MasterData.Infrastructure\MasterData.Infrastructure.csproj" />
<ProjectReference Include="..\MasterData.IntegrationTests\MasterData.IntegrationTests.csproj" />
<ProjectReference Include="..\MasterData.Interfaces\MasterData.Interfaces.csproj" />
<ProjectReference Include="..\Outbox.Infrastructure\Outbox.Infrastructure.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion source/IntegrationTests/TestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
using Energinet.DataHub.EDI.IntegrationTests.Infrastructure.Authentication.MarketActors;
using Energinet.DataHub.EDI.IntegrationTests.Infrastructure.Configuration.InternalCommands;
using Energinet.DataHub.EDI.IntegrationTests.Infrastructure.InboxEvents;
using Energinet.DataHub.EDI.MasterData.Application.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.MasterData.Infrastructure.Extensions.DependencyInjection;
using Energinet.DataHub.EDI.MasterData.Interfaces;
using Energinet.DataHub.EDI.MasterData.Interfaces.Models;
using Energinet.DataHub.EDI.Outbox.Infrastructure;
Expand Down
Loading

0 comments on commit c6c19d2

Please sign in to comment.