feat: Add functional tests for OrderService and update InventoryService command and idempotency logic.

This commit is contained in:
Ho Ngoc Hai
2026-01-18 00:19:46 +07:00
parent 844e40f818
commit 811ddd1e19
384 changed files with 6939 additions and 2793 deletions

View File

@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<AssemblyName>MyService.API</AssemblyName>
<RootNamespace>MyService.API</RootNamespace>
<AssemblyName>BookingService.API</AssemblyName>
<RootNamespace>BookingService.API</RootNamespace>
<Description>Web API layer with CQRS pattern</Description>
<UserSecretsId>myservice-api</UserSecretsId>
</PropertyGroup>
@@ -36,8 +36,8 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MyService.Domain\MyService.Domain.csproj" />
<ProjectReference Include="..\MyService.Infrastructure\MyService.Infrastructure.csproj" />
<ProjectReference Include="..\BookingService.Domain\BookingService.Domain.csproj" />
<ProjectReference Include="..\BookingService.Infrastructure\BookingService.Infrastructure.csproj" />
</ItemGroup>
</Project>