diff --git a/C4InterFlow.Automation/Writers/CSharpToAnyCodeGenerator.cs b/C4InterFlow.Automation/Writers/CSharpToAnyCodeGenerator.cs index 253089cd6..a577760e7 100644 --- a/C4InterFlow.Automation/Writers/CSharpToAnyCodeGenerator.cs +++ b/C4InterFlow.Automation/Writers/CSharpToAnyCodeGenerator.cs @@ -189,7 +189,7 @@ private static void HandleUsingStatement( { foreach (var variable in usingStatement.Declaration?.Variables) { - foreach (var invocationExpression in variable.Initializer?.DescendantNodes().OfType().ToArray()) + foreach (var invocationExpression in variable.Initializer?.DescendantNodes().OfType().Reverse()) { var invocationExpressionBlockCode = HandleInvocationExpression( invocationExpression, @@ -283,32 +283,45 @@ private static void HandleReturnStatement( } else { - foreach (var invocationExpression in returnStatement.DescendantNodes().OfType()) + if (returnStatement.Expression is InvocationExpressionSyntax invocationExpression) { blockCode = HandleInvocationExpression( - invocationExpression, - methodDeclaration, - architectureAsCodeContext, - writer, - alternativeInvocationMappers); + invocationExpression, + methodDeclaration, + architectureAsCodeContext, + writer, + alternativeInvocationMappers); + if (!string.IsNullOrEmpty(blockCode)) { - break; + result.AppendLine(blockCode); + } + else + { + result.AppendLine(CodeWriter.GetReturnFlowCode(invocationExpression.Expression.ToFullString())); } - } - - if (!string.IsNullOrEmpty(blockCode)) - { - result.AppendLine(blockCode); - } - else if (returnStatement.Expression is InvocationExpressionSyntax invocationExpression) - { - result.AppendLine(CodeWriter.GetReturnFlowCode(invocationExpression.Expression.ToFullString())); } else if (returnStatement.Expression is IdentifierNameSyntax identifierNameSyntax) { result.AppendLine(CodeWriter.GetReturnFlowCode(identifierNameSyntax.Identifier.Text)); } + else + { + foreach (var innerInvocationExpression in returnStatement.DescendantNodes().OfType().Reverse()) + { + blockCode = HandleInvocationExpression( + innerInvocationExpression, + methodDeclaration, + architectureAsCodeContext, + writer, + alternativeInvocationMappers); + + if (!string.IsNullOrEmpty(blockCode)) + { + result.AppendLine(blockCode); + } + } + } } } @@ -415,7 +428,7 @@ private static void HandleOtherStatements( CSharpToAnyAaCWriter writer, IEnumerable? alternativeInvocationMappers = null) { - foreach (var invocationExpression in statement.DescendantNodes().OfType()) + foreach (var invocationExpression in statement.DescendantNodes().OfType().Reverse()) { var blockCode = HandleInvocationExpression( invocationExpression, diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/CSharpToCSharpBasketApiAaCGenerator.cs b/Samples/dotnet.eShop/DotNetEShop.Cli/CSharpToCSharpBasketApiAaCGenerator.cs similarity index 99% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/CSharpToCSharpBasketApiAaCGenerator.cs rename to Samples/dotnet.eShop/DotNetEShop.Cli/CSharpToCSharpBasketApiAaCGenerator.cs index 3fd832eb2..1be0bedfa 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/CSharpToCSharpBasketApiAaCGenerator.cs +++ b/Samples/dotnet.eShop/DotNetEShop.Cli/CSharpToCSharpBasketApiAaCGenerator.cs @@ -5,7 +5,7 @@ using System.Text; using System.Threading.Tasks; -namespace dotnet.eShop.Architecture.Cli +namespace DotNetEShop.Cli { public class CSharpToCSharpBasketApiAaCGenerator : CSharpToCSharpAaCWriterStrategy { diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/CSharpToCSharpCatalogApiAaCGenerator.cs b/Samples/dotnet.eShop/DotNetEShop.Cli/CSharpToCSharpCatalogApiAaCGenerator.cs similarity index 99% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/CSharpToCSharpCatalogApiAaCGenerator.cs rename to Samples/dotnet.eShop/DotNetEShop.Cli/CSharpToCSharpCatalogApiAaCGenerator.cs index 7b5ef4ebc..660b5f6f3 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/CSharpToCSharpCatalogApiAaCGenerator.cs +++ b/Samples/dotnet.eShop/DotNetEShop.Cli/CSharpToCSharpCatalogApiAaCGenerator.cs @@ -5,7 +5,7 @@ using System.Text; using System.Threading.Tasks; -namespace dotnet.eShop.Architecture.Cli +namespace DotNetEShop.Cli { public class CSharpToCSharpCatalogApiAaCGenerator : CSharpToCSharpAaCWriterStrategy { diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/CSharpToYamlBasketApiAaCGenerator.cs b/Samples/dotnet.eShop/DotNetEShop.Cli/CSharpToYamlBasketApiAaCGenerator.cs similarity index 99% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/CSharpToYamlBasketApiAaCGenerator.cs rename to Samples/dotnet.eShop/DotNetEShop.Cli/CSharpToYamlBasketApiAaCGenerator.cs index 36cdfb959..2da2ea7bc 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/CSharpToYamlBasketApiAaCGenerator.cs +++ b/Samples/dotnet.eShop/DotNetEShop.Cli/CSharpToYamlBasketApiAaCGenerator.cs @@ -5,7 +5,7 @@ using System.Text; using System.Threading.Tasks; -namespace dotnet.eShop.Architecture.Cli +namespace DotNetEShop.Cli { public class CSharpToYamlBasketApiAaCGenerator : CSharpToYamlAaCWriterStrategy { diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/CSharpToYamlCatalogApiAaCGenerator.cs b/Samples/dotnet.eShop/DotNetEShop.Cli/CSharpToYamlCatalogApiAaCGenerator.cs similarity index 99% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/CSharpToYamlCatalogApiAaCGenerator.cs rename to Samples/dotnet.eShop/DotNetEShop.Cli/CSharpToYamlCatalogApiAaCGenerator.cs index e4b3c7528..ce0290710 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/CSharpToYamlCatalogApiAaCGenerator.cs +++ b/Samples/dotnet.eShop/DotNetEShop.Cli/CSharpToYamlCatalogApiAaCGenerator.cs @@ -5,7 +5,7 @@ using System.Text; using System.Threading.Tasks; -namespace dotnet.eShop.Architecture.Cli +namespace DotNetEShop.Cli { public class CSharpToYamlCatalogApiAaCGenerator : CSharpToYamlAaCWriterStrategy { diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/Cli Commands.txt b/Samples/dotnet.eShop/DotNetEShop.Cli/Cli Commands.txt similarity index 100% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/Cli Commands.txt rename to Samples/dotnet.eShop/DotNetEShop.Cli/Cli Commands.txt diff --git a/Samples/dotnet.eShop/DotNetEShop.Cli/DotNetEShop.Cli.csproj b/Samples/dotnet.eShop/DotNetEShop.Cli/DotNetEShop.Cli.csproj new file mode 100644 index 000000000..1f851a21d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop.Cli/DotNetEShop.Cli.csproj @@ -0,0 +1,23 @@ + + + + Exe + net6.0 + enable + enable + + + + + + + + + + + + + + + + diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/Program.cs b/Samples/dotnet.eShop/DotNetEShop.Cli/Program.cs similarity index 100% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/Program.cs rename to Samples/dotnet.eShop/DotNetEShop.Cli/Program.cs diff --git a/Samples/dotnet.eShop/DotNetEShop.Cli/Properties/launchSettings.json b/Samples/dotnet.eShop/DotNetEShop.Cli/Properties/launchSettings.json new file mode 100644 index 000000000..ee5e4caf9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop.Cli/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "dotnet.eShop.Architecture.Cli": { + "commandName": "Project", + "commandLineArgs": "execute-aac-strategy --aac-root-namespace \"dotnet.eShop.Architecture\" --aac-output-path \"C:\\C4InterFlow\\Samples\\dotnet.eShop\\dotnet.eShop.Architecture\\Yaml\" --aac-writer-strategy \"dotnet.eShop.Architecture.Cli.CSharpToYamlBasketApiAaCGenerator, dotnet.eShop.Architecture.Cli\" --params software-system-source-path=\"C:\\Data\\Projects\\C4InterFlow\\eShop-main\\src\\Basket.API\\Basket.API.csproj\" --params software-system-name=\"BasketApi\"" + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/Utils.cs b/Samples/dotnet.eShop/DotNetEShop.Cli/Utils.cs similarity index 99% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/Utils.cs rename to Samples/dotnet.eShop/DotNetEShop.Cli/Utils.cs index 1f6e4932b..a36cc3d79 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/Utils.cs +++ b/Samples/dotnet.eShop/DotNetEShop.Cli/Utils.cs @@ -3,7 +3,7 @@ using System.Text.RegularExpressions; using C4InterFlow.Automation.Writers; -namespace dotnet.eShop.Architecture.Cli +namespace DotNetEShop.Cli { internal class Utils { diff --git a/Samples/dotnet.eShop/DotNetEShop.sln b/Samples/dotnet.eShop/DotNetEShop.sln new file mode 100644 index 000000000..6b9115ffe --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop.sln @@ -0,0 +1,43 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34309.116 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotNetEShop", "DotNetEShop\DotNetEShop.csproj", "{F18C0E05-2B41-4508-B91D-3B84E0535E99}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotNetEShop.Cli", "DotNetEShop.Cli\DotNetEShop.Cli.csproj", "{0DEABC5C-3A2C-42FE-91B6-E326BA6CF65D}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "C4InterFlow", "..\..\C4InterFlow\C4InterFlow.csproj", "{C7E5280A-0FD1-4916-BB13-7F57A5E5274B}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "C4InterFlow.Automation", "..\..\C4InterFlow.Automation\C4InterFlow.Automation.csproj", "{E47ACFF1-7BAC-4538-9558-D7AA04939546}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F18C0E05-2B41-4508-B91D-3B84E0535E99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F18C0E05-2B41-4508-B91D-3B84E0535E99}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F18C0E05-2B41-4508-B91D-3B84E0535E99}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F18C0E05-2B41-4508-B91D-3B84E0535E99}.Release|Any CPU.Build.0 = Release|Any CPU + {0DEABC5C-3A2C-42FE-91B6-E326BA6CF65D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0DEABC5C-3A2C-42FE-91B6-E326BA6CF65D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0DEABC5C-3A2C-42FE-91B6-E326BA6CF65D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0DEABC5C-3A2C-42FE-91B6-E326BA6CF65D}.Release|Any CPU.Build.0 = Release|Any CPU + {C7E5280A-0FD1-4916-BB13-7F57A5E5274B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C7E5280A-0FD1-4916-BB13-7F57A5E5274B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C7E5280A-0FD1-4916-BB13-7F57A5E5274B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C7E5280A-0FD1-4916-BB13-7F57A5E5274B}.Release|Any CPU.Build.0 = Release|Any CPU + {E47ACFF1-7BAC-4538-9558-D7AA04939546}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E47ACFF1-7BAC-4538-9558-D7AA04939546}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E47ACFF1-7BAC-4538-9558-D7AA04939546}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E47ACFF1-7BAC-4538-9558-D7AA04939546}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {2C727580-ED93-4CC0-9CAF-A1DFE0590CB4} + EndGlobalSection +EndGlobal diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/.c4s/C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/.c4s/C4.puml similarity index 100% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/.c4s/C4.puml rename to Samples/dotnet.eShop/DotNetEShop/Diagrams/.c4s/C4.puml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/.c4s/C4_Component.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/.c4s/C4_Component.puml similarity index 100% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/.c4s/C4_Component.puml rename to Samples/dotnet.eShop/DotNetEShop/Diagrams/.c4s/C4_Component.puml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/.c4s/C4_Container.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/.c4s/C4_Container.puml similarity index 100% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/.c4s/C4_Container.puml rename to Samples/dotnet.eShop/DotNetEShop/Diagrams/.c4s/C4_Container.puml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/.c4s/C4_Context.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/.c4s/C4_Context.puml similarity index 100% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/.c4s/C4_Context.puml rename to Samples/dotnet.eShop/DotNetEShop/Diagrams/.c4s/C4_Context.puml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/.c4s/C4_Deployment.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/.c4s/C4_Deployment.puml similarity index 100% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/.c4s/C4_Deployment.puml rename to Samples/dotnet.eShop/DotNetEShop/Diagrams/.c4s/C4_Deployment.puml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/.c4s/C4_Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/.c4s/C4_Sequence.puml similarity index 100% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/.c4s/C4_Sequence.puml rename to Samples/dotnet.eShop/DotNetEShop/Diagrams/.c4s/C4_Sequence.puml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4 Static.png new file mode 100644 index 000000000..e044e16af Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4 Static.puml new file mode 100644 index 000000000..203520a4c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4 Static.puml @@ -0,0 +1,49 @@ +@startuml +!include .c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title All Software Systems - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4 Static.svg new file mode 100644 index 000000000..b1f5eeb67 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4 Static.svg @@ -0,0 +1 @@ +All Software Systems - C4 Static - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextUsesUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4.png new file mode 100644 index 000000000..a9585b6a4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4.puml new file mode 100644 index 000000000..0227d6d04 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4.puml @@ -0,0 +1,49 @@ +@startuml +!include .c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title All Software Systems - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4.svg new file mode 100644 index 000000000..caad2bd8b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Component - C4.svg @@ -0,0 +1 @@ +All Software Systems - C4 - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextKey Delete AsyncString Get Lease AsyncString Set AsyncDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4 Static.png new file mode 100644 index 000000000..670a24983 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4 Static.puml new file mode 100644 index 000000000..92f299007 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4 Static.puml @@ -0,0 +1,35 @@ +@startuml +!include .c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title All Software Systems - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Uses") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4 Static.svg new file mode 100644 index 000000000..6667b8335 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4 Static.svg @@ -0,0 +1 @@ +All Software Systems - C4 Static - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureUsesUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4.png new file mode 100644 index 000000000..458e6fa58 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4.puml new file mode 100644 index 000000000..708b2fe5e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4.puml @@ -0,0 +1,35 @@ +@startuml +!include .c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title All Software Systems - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4.svg new file mode 100644 index 000000000..607ae1991 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Container - C4.svg @@ -0,0 +1 @@ +All Software Systems - C4 - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4 Static.png new file mode 100644 index 000000000..162f1fd10 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4 Static.puml new file mode 100644 index 000000000..448cb15c6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4 Static.puml @@ -0,0 +1,25 @@ +@startuml +!include .c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title All Software Systems - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4 Static.svg new file mode 100644 index 000000000..a9a1736f3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4 Static.svg @@ -0,0 +1 @@ +All Software Systems - C4 Static - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4.png new file mode 100644 index 000000000..4898ba2a5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4.puml new file mode 100644 index 000000000..f5e28d4fc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4.puml @@ -0,0 +1,25 @@ +@startuml +!include .c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title All Software Systems - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4.svg new file mode 100644 index 000000000..cb7973208 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/Context - C4.svg @@ -0,0 +1 @@ +All Software Systems - C4 - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4 Static.png new file mode 100644 index 000000000..afc220d09 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4 Static.puml new file mode 100644 index 000000000..970c3e1c3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4 Static.puml @@ -0,0 +1,49 @@ +@startuml +!include ..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4 Static.svg new file mode 100644 index 000000000..7224a6fce --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - C4 Static - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextUsesUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4.png new file mode 100644 index 000000000..98763f438 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4.puml new file mode 100644 index 000000000..3ee254479 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4.puml @@ -0,0 +1,49 @@ +@startuml +!include ..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4.svg new file mode 100644 index 000000000..efac18812 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - C4 - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextKey Delete AsyncString Get Lease AsyncString Set AsyncDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4 Static.png new file mode 100644 index 000000000..f7eff9bb5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4 Static.puml new file mode 100644 index 000000000..e6558ef9b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4 Static.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Uses") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4 Static.svg new file mode 100644 index 000000000..030fb1eed --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - C4 Static - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureUsesUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4.png new file mode 100644 index 000000000..618bfda87 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4.puml new file mode 100644 index 000000000..59c9f016b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4.svg new file mode 100644 index 000000000..16ad16db4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - C4 - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4 Static.png new file mode 100644 index 000000000..a05a7e345 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4 Static.puml new file mode 100644 index 000000000..6dc8471d1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4 Static.puml @@ -0,0 +1,25 @@ +@startuml +!include ..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4 Static.svg new file mode 100644 index 000000000..74ab6c7d1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - C4 Static - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4.png new file mode 100644 index 000000000..1a872946a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4.puml new file mode 100644 index 000000000..cf3971647 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4.puml @@ -0,0 +1,25 @@ +@startuml +!include ..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4.svg new file mode 100644 index 000000000..546ba51a2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - C4 - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4 Static.png new file mode 100644 index 000000000..cc6d77745 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4 Static.puml new file mode 100644 index 000000000..3974d0a6f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4 Static.puml @@ -0,0 +1,37 @@ +@startuml +!include ..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4 Static.svg new file mode 100644 index 000000000..6b31a9f4c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - C4 Static - Component levelBasket Api[System]Data[Container]Grpc[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4.png new file mode 100644 index 000000000..ff75a428c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4.puml new file mode 100644 index 000000000..ffa2050d0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4.puml @@ -0,0 +1,37 @@ +@startuml +!include ..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4.svg new file mode 100644 index 000000000..9ab585837 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - C4 - Component levelBasket Api[System]Data[Container]Grpc[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceKey Delete AsyncString Get Lease AsyncString Set AsyncDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4 Static.png new file mode 100644 index 000000000..b3a5805cb Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4 Static.puml new file mode 100644 index 000000000..c396668f7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4 Static.svg new file mode 100644 index 000000000..36645cf00 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - C4 Static - Container levelBasket Api[System]DataGrpcUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4.png new file mode 100644 index 000000000..c1c7876a4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4.puml new file mode 100644 index 000000000..c866cd70f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4.svg new file mode 100644 index 000000000..3ee0f1f0c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - C4 - Container levelBasket Api[System]DataGrpcDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4 Static.png new file mode 100644 index 000000000..a169c3eb4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4 Static.puml new file mode 100644 index 000000000..ffe467de8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4 Static.puml @@ -0,0 +1,32 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4 Static.svg new file mode 100644 index 000000000..c9fb59aff --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - C4 Static - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4.png new file mode 100644 index 000000000..2f30f540b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4.puml new file mode 100644 index 000000000..985a2adcb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4.puml @@ -0,0 +1,32 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4.svg new file mode 100644 index 000000000..fced6917d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - C4 - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseKey Delete AsyncString Get Lease AsyncString Set AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.png new file mode 100644 index 000000000..e1917332b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.puml new file mode 100644 index 000000000..1686c239d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.puml @@ -0,0 +1,32 @@ +@startuml +!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.svg new file mode 100644 index 000000000..443964d89 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - C4 Static - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.png new file mode 100644 index 000000000..0aaa28148 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.puml new file mode 100644 index 000000000..25b037476 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.puml @@ -0,0 +1,32 @@ +@startuml +!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.svg new file mode 100644 index 000000000..b9c958ee5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - C4 - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseKey Delete AsyncString Get Lease AsyncString Set AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.png new file mode 100644 index 000000000..c70db7a6e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..f9894f25a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.puml @@ -0,0 +1,21 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..a318aa5a4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Data[Container]DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Sequence - Component level«external_system»External«component»Redis Basket Repository«component»Redis DatabaseDelete Basket AsyncGet Basket KeyKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.png new file mode 100644 index 000000000..5ed2272a8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.puml new file mode 100644 index 000000000..01596db56 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.puml @@ -0,0 +1,32 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.svg new file mode 100644 index 000000000..f98a8de2c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Static - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.png new file mode 100644 index 000000000..b821cd1f9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.puml new file mode 100644 index 000000000..ecd70ecdc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.puml @@ -0,0 +1,32 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.svg new file mode 100644 index 000000000..655179ba4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseKey Delete AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.png new file mode 100644 index 000000000..5412c9eba Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.puml new file mode 100644 index 000000000..26d561a9d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.puml @@ -0,0 +1,24 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Data" #White + participant "Redis Basket Repository" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository + participant "Redis Database" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Delete Basket Async +group Delete Basket Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : Key Delete Async +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.svg new file mode 100644 index 000000000..f425ae168 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - Sequence - Component levelDataExternalExternalRedis Basket RepositoryRedis Basket RepositoryRedis DatabaseRedis DatabaseDelete Basket AsyncDelete Basket AsyncGet Basket KeyKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.png new file mode 100644 index 000000000..fba5815b0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..b69188646 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..7a3e93a35 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Sequence - Container level«external_system»External«container»DataDelete Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.png new file mode 100644 index 000000000..890788629 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.puml new file mode 100644 index 000000000..80a2030f8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.svg new file mode 100644 index 000000000..55404d021 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.png new file mode 100644 index 000000000..6abec574b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.puml new file mode 100644 index 000000000..c0a63bf9e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.svg new file mode 100644 index 000000000..b683d82e9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.png new file mode 100644 index 000000000..2242010c5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.puml new file mode 100644 index 000000000..73188ead9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Data" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data : Delete Basket Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.svg new file mode 100644 index 000000000..6a09f81f8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - Sequence - Container levelBasket ApiExternalExternalDataDataDelete Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.png new file mode 100644 index 000000000..f6f876fe8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..3bc9af5dd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "Delete Basket Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..bfa979d64 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Sequence - Context level«external_system»External«system»Basket ApiDelete Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.png new file mode 100644 index 000000000..ac617ee2b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.puml new file mode 100644 index 000000000..6ed969819 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.svg new file mode 100644 index 000000000..c4752c67b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.png new file mode 100644 index 000000000..83f201682 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.puml new file mode 100644 index 000000000..5eceecfc3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.svg new file mode 100644 index 000000000..63c6640a8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.png new file mode 100644 index 000000000..8bf55736e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.puml new file mode 100644 index 000000000..bd89fcafb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : Delete Basket Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.svg new file mode 100644 index 000000000..db5ee1277 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Delete Basket Async - Sequence - Context levelExternalExternalBasket ApiBasket ApiDelete Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.png new file mode 100644 index 000000000..0a826cda9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..67d2b8e38 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.puml @@ -0,0 +1,22 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Return (JsonSerializer.Deserialize)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..b6bda5263 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Data[Container]DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Sequence - Component level«external_system»External«component»Redis Basket Repository«component»Redis DatabaseGet Basket AsyncGet Basket KeyString Get Lease AsyncReturn(JsonSerializer.Deserialize) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.png new file mode 100644 index 000000000..7430cb9a4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.puml new file mode 100644 index 000000000..cf260fa4f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.puml @@ -0,0 +1,32 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.svg new file mode 100644 index 000000000..809bba889 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Static - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.png new file mode 100644 index 000000000..66a723c0c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.puml new file mode 100644 index 000000000..1fcf5a004 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.puml @@ -0,0 +1,32 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.svg new file mode 100644 index 000000000..a1ae0c5de --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseString Get Lease AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.png new file mode 100644 index 000000000..eba4131ea Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.puml new file mode 100644 index 000000000..00149779e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.puml @@ -0,0 +1,25 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Data" #White + participant "Redis Basket Repository" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository + participant "Redis Database" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Async +group Get Basket Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Get Lease Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Return (JsonSerializer.Deserialize) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.svg new file mode 100644 index 000000000..923a1102b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - Sequence - Component levelDataExternalExternalRedis Basket RepositoryRedis Basket RepositoryRedis DatabaseRedis DatabaseGet Basket AsyncGet Basket AsyncGet Basket KeyString Get Lease AsyncReturn (JsonSerializer.Deserialize) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.png new file mode 100644 index 000000000..7dda57130 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..704239800 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Get Basket Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..d395771e9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Sequence - Container level«external_system»External«container»DataGet Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.png new file mode 100644 index 000000000..280a586db Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.puml new file mode 100644 index 000000000..932069e8c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.svg new file mode 100644 index 000000000..373787954 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.png new file mode 100644 index 000000000..f79502037 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.puml new file mode 100644 index 000000000..09de5386c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.svg new file mode 100644 index 000000000..b5ab20319 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.png new file mode 100644 index 000000000..7f45a4c20 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.puml new file mode 100644 index 000000000..4792c2f9a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Data" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data : Get Basket Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.svg new file mode 100644 index 000000000..7d17e55dc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - Sequence - Container levelBasket ApiExternalExternalDataDataGet Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.png new file mode 100644 index 000000000..b4bae7d21 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..97f3b1c62 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "Get Basket Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..0d82af8fd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Sequence - Context level«external_system»External«system»Basket ApiGet Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.png new file mode 100644 index 000000000..94b738cc1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.puml new file mode 100644 index 000000000..389fb0e28 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.svg new file mode 100644 index 000000000..953ba0363 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.png new file mode 100644 index 000000000..3d6d93bd3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.puml new file mode 100644 index 000000000..5b10341f6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.svg new file mode 100644 index 000000000..423fc01f5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.png new file mode 100644 index 000000000..dbc1b05a6 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.puml new file mode 100644 index 000000000..00a1bde9d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : Get Basket Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.svg new file mode 100644 index 000000000..1f71afca9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Async - Sequence - Context levelExternalExternalBasket ApiBasket ApiGet Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.png new file mode 100644 index 000000000..581a12abc Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.puml new file mode 100644 index 000000000..0f092a054 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.svg new file mode 100644 index 000000000..3594bc62d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Data[Container]DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Sequence - Component level«external_system»External«component»Redis Basket RepositoryGet Basket Key \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.png new file mode 100644 index 000000000..e4386b272 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.puml new file mode 100644 index 000000000..1c823aa72 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.svg new file mode 100644 index 000000000..72b2f9cde --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Static - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.png new file mode 100644 index 000000000..4d5ff2b63 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.puml new file mode 100644 index 000000000..530f4e8a3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.svg new file mode 100644 index 000000000..fdf44b307 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.png new file mode 100644 index 000000000..89fac466a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.puml new file mode 100644 index 000000000..622496a7e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Data" #White + participant "Redis Basket Repository" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.svg new file mode 100644 index 000000000..b55ca833d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - Sequence - Component levelDataExternalExternalRedis Basket RepositoryRedis Basket RepositoryGet Basket Key \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.png new file mode 100644 index 000000000..a5c82db47 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.puml new file mode 100644 index 000000000..d055350b0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Get Basket Key") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.svg new file mode 100644 index 000000000..b80532db7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Sequence - Container level«external_system»External«container»DataGet Basket Key \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.png new file mode 100644 index 000000000..9fdf18316 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.puml new file mode 100644 index 000000000..c821360f7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.svg new file mode 100644 index 000000000..918dccdcc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.png new file mode 100644 index 000000000..ab5548d95 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.puml new file mode 100644 index 000000000..03e079e29 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.svg new file mode 100644 index 000000000..c68ebd8e9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.png new file mode 100644 index 000000000..75a4998d8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.puml new file mode 100644 index 000000000..c41dd7727 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Data" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data : Get Basket Key + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.svg new file mode 100644 index 000000000..2eb11c2ff --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - Sequence - Container levelBasket ApiExternalExternalDataDataGet Basket Key \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.png new file mode 100644 index 000000000..b69742210 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.puml new file mode 100644 index 000000000..549326f3a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "Get Basket Key") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.svg new file mode 100644 index 000000000..c876295f3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Sequence - Context level«external_system»External«system»Basket ApiGet Basket Key \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.png new file mode 100644 index 000000000..e3627b51f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.puml new file mode 100644 index 000000000..508670bdd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.svg new file mode 100644 index 000000000..4940a7dad --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.png new file mode 100644 index 000000000..07af7ad62 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.puml new file mode 100644 index 000000000..75fffb7b7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.svg new file mode 100644 index 000000000..1472ef6cb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.png new file mode 100644 index 000000000..3b1e68162 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.puml new file mode 100644 index 000000000..e17b85edd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : Get Basket Key + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.svg new file mode 100644 index 000000000..c37eb7ab4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Get Basket Key - Sequence - Context levelExternalExternalBasket ApiBasket ApiGet Basket Key \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.png new file mode 100644 index 000000000..339c6891d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..12e092726 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.puml @@ -0,0 +1,25 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Update Basket Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Set Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Return (JsonSerializer.Deserialize)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..d0adb428a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Data[Container]DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Sequence - Component level«external_system»External«component»Redis Basket Repository«component»Redis DatabaseUpdate Basket AsyncGet Basket KeyString Set AsyncGet Basket AsyncGet Basket KeyString Get Lease AsyncReturn(JsonSerializer.Deserialize) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.png new file mode 100644 index 000000000..b0286fe8d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.puml new file mode 100644 index 000000000..a7515f085 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.puml @@ -0,0 +1,32 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.svg new file mode 100644 index 000000000..63e988845 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Static - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.png new file mode 100644 index 000000000..8cefbae22 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.puml new file mode 100644 index 000000000..85ac2ea41 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.puml @@ -0,0 +1,32 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Set Async\nString Get Lease Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.svg new file mode 100644 index 000000000..9919665d0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseString Set AsyncString Get Lease AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.png new file mode 100644 index 000000000..db26c6af6 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.puml new file mode 100644 index 000000000..c274bed6b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.puml @@ -0,0 +1,30 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Data" #White + participant "Redis Basket Repository" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository + participant "Redis Database" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Update Basket Async +group Update Basket Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Set Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Async +group Get Basket Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Get Lease Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Return (JsonSerializer.Deserialize) +end +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.svg new file mode 100644 index 000000000..c72e46ab7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - Sequence - Component levelDataExternalExternalRedis Basket RepositoryRedis Basket RepositoryRedis DatabaseRedis DatabaseUpdate Basket AsyncUpdate Basket AsyncGet Basket KeyString Set AsyncGet Basket AsyncGet Basket AsyncGet Basket KeyString Get Lease AsyncReturn (JsonSerializer.Deserialize) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.png new file mode 100644 index 000000000..6d8d33f7c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..bb6b512bb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Update Basket Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..20d8573fd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Sequence - Container level«external_system»External«container»DataUpdate Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.png new file mode 100644 index 000000000..96f4b9a05 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.puml new file mode 100644 index 000000000..b6946b5ca --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.svg new file mode 100644 index 000000000..37158c01f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.png new file mode 100644 index 000000000..9e36c2316 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.puml new file mode 100644 index 000000000..2457d958e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.svg new file mode 100644 index 000000000..1a58e6130 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.png new file mode 100644 index 000000000..299edf235 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.puml new file mode 100644 index 000000000..c935c494d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Data" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data : Update Basket Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.svg new file mode 100644 index 000000000..5b7f2c3d0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - Sequence - Container levelBasket ApiExternalExternalDataDataUpdate Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.png new file mode 100644 index 000000000..0be4b8913 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..fefaf22cf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "Update Basket Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..50116ca9a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Sequence - Context level«external_system»External«system»Basket ApiUpdate Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.png new file mode 100644 index 000000000..53ae920ac Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.puml new file mode 100644 index 000000000..1721807ca --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.svg new file mode 100644 index 000000000..0e90283b7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.png new file mode 100644 index 000000000..3861de9dd Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.puml new file mode 100644 index 000000000..4dd45471f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.svg new file mode 100644 index 000000000..6038da475 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.png new file mode 100644 index 000000000..16cbd172a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.puml new file mode 100644 index 000000000..9f06b0732 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : Update Basket Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.svg new file mode 100644 index 000000000..b20533ec6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Basket Repository - Update Basket Async - Sequence - Context levelExternalExternalBasket ApiBasket ApiUpdate Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.png new file mode 100644 index 000000000..6364732fd Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.puml new file mode 100644 index 000000000..6cf41f04e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.svg new file mode 100644 index 000000000..3d3c82906 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - C4 Static - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.png new file mode 100644 index 000000000..c2df7f56a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.puml new file mode 100644 index 000000000..a63433e60 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.svg new file mode 100644 index 000000000..f22681757 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - C4 - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.png new file mode 100644 index 000000000..49cc8f907 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..f862fdcd2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..d17be5c93 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Data[Container]DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 Sequence - Component level«external_system»External«component»Redis DatabaseKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.png new file mode 100644 index 000000000..43118f8f1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.puml new file mode 100644 index 000000000..e122284b2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.svg new file mode 100644 index 000000000..73ca22630 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 Static - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.png new file mode 100644 index 000000000..20cc1964a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.puml new file mode 100644 index 000000000..dadd4645d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.svg new file mode 100644 index 000000000..deb96c59d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.png new file mode 100644 index 000000000..35f6c55d7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.puml new file mode 100644 index 000000000..9d35ea5e2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Data" #White + participant "Redis Database" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : Key Delete Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.svg new file mode 100644 index 000000000..ade4a7423 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - Sequence - Component levelDataExternalExternalRedis DatabaseRedis DatabaseKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.png new file mode 100644 index 000000000..8b03555c3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..d6e659648 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Key Delete Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..190689d89 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 Sequence - Container level«external_system»External«container»DataKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.png new file mode 100644 index 000000000..010ce493e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.puml new file mode 100644 index 000000000..2056f7acd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.svg new file mode 100644 index 000000000..65d76765e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.png new file mode 100644 index 000000000..f3c148827 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.puml new file mode 100644 index 000000000..23cd6dca5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.svg new file mode 100644 index 000000000..618f98d56 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.png new file mode 100644 index 000000000..d5726ebd0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.puml new file mode 100644 index 000000000..b14a1089b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Data" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data : Key Delete Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.svg new file mode 100644 index 000000000..a074fbb43 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - Sequence - Container levelBasket ApiExternalExternalDataDataKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.png new file mode 100644 index 000000000..f45d91e92 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..032d21e82 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "Key Delete Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..e456804f7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 Sequence - Context level«external_system»External«system»Basket ApiKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.png new file mode 100644 index 000000000..dd75d772b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.puml new file mode 100644 index 000000000..0a71cf147 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.svg new file mode 100644 index 000000000..f23fc262e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.png new file mode 100644 index 000000000..35f238931 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.puml new file mode 100644 index 000000000..36f48630e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.svg new file mode 100644 index 000000000..715b09a1a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.png new file mode 100644 index 000000000..65abddfef Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.puml new file mode 100644 index 000000000..61adcd648 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : Key Delete Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.svg new file mode 100644 index 000000000..d5d0a4469 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - Key Delete Async - Sequence - Context levelExternalExternalBasket ApiBasket ApiKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.png new file mode 100644 index 000000000..64fb283c4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..d0c01b6cb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..4c1ef21da --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Data[Container]DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 Sequence - Component level«external_system»External«component»Redis DatabaseString Get Lease Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.png new file mode 100644 index 000000000..074e19bfc Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.puml new file mode 100644 index 000000000..1278fef2e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.svg new file mode 100644 index 000000000..367b8880b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 Static - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.png new file mode 100644 index 000000000..fd450e896 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.puml new file mode 100644 index 000000000..4b968f8aa --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.svg new file mode 100644 index 000000000..5f7a651cb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.png new file mode 100644 index 000000000..5c1a4fb13 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.puml new file mode 100644 index 000000000..9241f5285 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Data" #White + participant "Redis Database" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Get Lease Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.svg new file mode 100644 index 000000000..2fe41aaf7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - Sequence - Component levelDataExternalExternalRedis DatabaseRedis DatabaseString Get Lease Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.png new file mode 100644 index 000000000..60a4dc362 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..9c0cb39b1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "String Get Lease Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..6732952ef --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 Sequence - Container level«external_system»External«container»DataString Get Lease Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.png new file mode 100644 index 000000000..b42a5322f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.puml new file mode 100644 index 000000000..198ca369c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.svg new file mode 100644 index 000000000..0cb40b8a1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.png new file mode 100644 index 000000000..35b61f6a2 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.puml new file mode 100644 index 000000000..f1633ab03 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.svg new file mode 100644 index 000000000..e9a4efafa --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.png new file mode 100644 index 000000000..a0603ac2b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.puml new file mode 100644 index 000000000..a1fa26624 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Data" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data : String Get Lease Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.svg new file mode 100644 index 000000000..290caa4e0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - Sequence - Container levelBasket ApiExternalExternalDataDataString Get Lease Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.png new file mode 100644 index 000000000..26d4c214c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..0bf667040 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "String Get Lease Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..7ae3f751f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 Sequence - Context level«external_system»External«system»Basket ApiString Get Lease Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.png new file mode 100644 index 000000000..8f07bb42c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.puml new file mode 100644 index 000000000..34a245d02 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.svg new file mode 100644 index 000000000..d9835ede1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.png new file mode 100644 index 000000000..49a2ebf0c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.puml new file mode 100644 index 000000000..54412f4b7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.svg new file mode 100644 index 000000000..a3a6f1f72 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.png new file mode 100644 index 000000000..f2f7c085a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.puml new file mode 100644 index 000000000..eb62e4dfa --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : String Get Lease Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.svg new file mode 100644 index 000000000..104adb127 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Get Lease Async - Sequence - Context levelExternalExternalBasket ApiBasket ApiString Get Lease Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.png new file mode 100644 index 000000000..2e6f09f15 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..40b396ea0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Set Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..ba0428ef9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Data[Container]DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 Sequence - Component level«external_system»External«component»Redis DatabaseString Set Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.png new file mode 100644 index 000000000..c1665e869 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.puml new file mode 100644 index 000000000..1bba6044c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.svg new file mode 100644 index 000000000..3b2f1bbba --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 Static - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.png new file mode 100644 index 000000000..56aaebc90 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.puml new file mode 100644 index 000000000..31b37a982 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.svg new file mode 100644 index 000000000..5c43538e1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.png new file mode 100644 index 000000000..489d56e3b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.puml new file mode 100644 index 000000000..744c9220b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Database - String Set Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Data" #White + participant "Redis Database" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Set Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.svg new file mode 100644 index 000000000..51531194b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Set Async - Sequence - Component levelDataExternalExternalRedis DatabaseRedis DatabaseString Set Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.png new file mode 100644 index 000000000..71a75c732 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..d4ba86081 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "String Set Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..023438416 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 Sequence - Container level«external_system»External«container»DataString Set Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.png new file mode 100644 index 000000000..24a69cd3e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.puml new file mode 100644 index 000000000..cf3b06708 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.svg new file mode 100644 index 000000000..03fc19090 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.png new file mode 100644 index 000000000..5c4fe58f4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.puml new file mode 100644 index 000000000..884be7a33 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.svg new file mode 100644 index 000000000..fb408c1aa --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.png new file mode 100644 index 000000000..04aa93f62 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.puml new file mode 100644 index 000000000..070ea6023 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Database - String Set Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Data" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data : String Set Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.svg new file mode 100644 index 000000000..2888416db --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Set Async - Sequence - Container levelBasket ApiExternalExternalDataDataString Set Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.png new file mode 100644 index 000000000..793877ff3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..9c9512a2e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "String Set Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..476964f55 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 Sequence - Context level«external_system»External«system»Basket ApiString Set Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.png new file mode 100644 index 000000000..b19fc9940 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.puml new file mode 100644 index 000000000..7a269b1ee --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.svg new file mode 100644 index 000000000..a1e6a6228 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.png new file mode 100644 index 000000000..196c2dde2 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.puml new file mode 100644 index 000000000..8e3b3d317 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.svg new file mode 100644 index 000000000..7142dff5e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Set Async - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.png new file mode 100644 index 000000000..1a09d7f60 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.puml new file mode 100644 index 000000000..18ff21cfe --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Data - Redis Database - String Set Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : String Set Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.svg new file mode 100644 index 000000000..c27d5dbcb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - Redis Database - String Set Async - Sequence - Context levelExternalExternalBasket ApiBasket ApiString Set Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4 Static.png new file mode 100644 index 000000000..a3e3bbb0b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4 Static.puml new file mode 100644 index 000000000..88876c587 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4 Static.svg new file mode 100644 index 000000000..fb99f3f84 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4.png new file mode 100644 index 000000000..65cf06b61 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4.puml new file mode 100644 index 000000000..57cbbff71 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Data - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4.svg new file mode 100644 index 000000000..98372379d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Data/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Data - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.png new file mode 100644 index 000000000..a0cfa58df Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.puml new file mode 100644 index 000000000..cf72bc5ff --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.puml @@ -0,0 +1,37 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.svg new file mode 100644 index 000000000..47d7f3be5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - C4 Static - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4.png new file mode 100644 index 000000000..2d9695268 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4.puml new file mode 100644 index 000000000..1e6a5580f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4.puml @@ -0,0 +1,37 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4.svg new file mode 100644 index 000000000..1fbcca13f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - C4 - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncKey Delete AsyncString Get Lease AsyncString Set AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.png new file mode 100644 index 000000000..086205407 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.puml new file mode 100644 index 000000000..30c9593da --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.puml @@ -0,0 +1,37 @@ +@startuml +!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.svg new file mode 100644 index 000000000..771574cb7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - C4 Static - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.png new file mode 100644 index 000000000..0e2847a26 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.puml new file mode 100644 index 000000000..3907871aa --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.puml @@ -0,0 +1,37 @@ +@startuml +!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.svg new file mode 100644 index 000000000..5fc4d4e8e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - C4 - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncKey Delete AsyncString Get Lease AsyncString Set AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.png new file mode 100644 index 000000000..6f5fd4998 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.puml new file mode 100644 index 000000000..77bcd40ac --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +Boundary_End() + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Delete Basket") +alt string.IsNullOrEmpty(userId) +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Throw Not Authenticated") +end +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.svg new file mode 100644 index 000000000..5cd2d5802 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Grpc[Container]Data[Container]DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 Sequence - Component level«external_system»External«component»Basket Service«component»Redis Basket Repository«component»Redis DatabaseDelete Basketalt[string.IsNullOrEmpty(userId)]Throw Not AuthenticatedDelete Basket AsyncGet Basket KeyKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.png new file mode 100644 index 000000000..b3d811f67 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.puml new file mode 100644 index 000000000..42103d657 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.puml @@ -0,0 +1,37 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.svg new file mode 100644 index 000000000..947ff15c7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 Static - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.png new file mode 100644 index 000000000..b3e6fb36e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.puml new file mode 100644 index 000000000..d79ef9de1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.puml @@ -0,0 +1,37 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.svg new file mode 100644 index 000000000..8b0862bff --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseDelete Basket AsyncKey Delete AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.png new file mode 100644 index 000000000..1c72c749a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.puml new file mode 100644 index 000000000..89ba386d3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.puml @@ -0,0 +1,35 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Grpc" #White + participant "Basket Service" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService +end box + + +box "Data" #White + participant "Redis Basket Repository" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository + participant "Redis Database" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Delete Basket +group Delete Basket +alt string.IsNullOrEmpty(userId) +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Throw Not Authenticated +end +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Delete Basket Async +group Delete Basket Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : Key Delete Async +end +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.svg new file mode 100644 index 000000000..e3c497ec8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - Sequence - Component levelGrpcDataExternalExternalBasket ServiceBasket ServiceRedis Basket RepositoryRedis Basket RepositoryRedis DatabaseRedis DatabaseDelete BasketDelete Basketalt[string.IsNullOrEmpty(userId)]Throw Not AuthenticatedDelete Basket AsyncDelete Basket AsyncGet Basket KeyKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.png new file mode 100644 index 000000000..3ea3b97f7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.puml new file mode 100644 index 000000000..64e425c93 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.puml @@ -0,0 +1,17 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Delete Basket") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.svg new file mode 100644 index 000000000..754d867db --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 Sequence - Container level«external_system»External«container»Grpc«container»DataDelete BasketDelete Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.png new file mode 100644 index 000000000..c6b7ee93d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.puml new file mode 100644 index 000000000..32068685f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.svg new file mode 100644 index 000000000..d21e66205 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 Static - Container levelBasket Api[System]GrpcDataUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.png new file mode 100644 index 000000000..f01f69c87 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.puml new file mode 100644 index 000000000..5afa6bc0f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.svg new file mode 100644 index 000000000..c5bfbb77d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 - Container levelBasket Api[System]GrpcDataDelete Basket AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.png new file mode 100644 index 000000000..c202f84be Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.puml new file mode 100644 index 000000000..808f21830 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Grpc" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc + participant "Data" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc : Delete Basket +group Delete Basket +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data : Delete Basket Async +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.svg new file mode 100644 index 000000000..f53f487b4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcDataDataDelete BasketDelete BasketDelete Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.png new file mode 100644 index 000000000..b78d0ba23 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.puml new file mode 100644 index 000000000..0b08fa5f3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "Delete Basket") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.svg new file mode 100644 index 000000000..07b8f7fc3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 Sequence - Context level«external_system»External«system»Basket ApiDelete Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.png new file mode 100644 index 000000000..dd1797ea7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.puml new file mode 100644 index 000000000..cdfbaec61 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.svg new file mode 100644 index 000000000..15e8a9fde --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.png new file mode 100644 index 000000000..bc5d87a0f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.puml new file mode 100644 index 000000000..520452050 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.svg new file mode 100644 index 000000000..d16662848 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.png new file mode 100644 index 000000000..d5a909dc3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.puml new file mode 100644 index 000000000..f4493a420 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : Delete Basket + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.svg new file mode 100644 index 000000000..4c0ddd021 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Delete Basket - Sequence - Context levelExternalExternalBasket ApiBasket ApiDelete Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.png new file mode 100644 index 000000000..ed08da6f3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.puml new file mode 100644 index 000000000..0b661a9bb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.puml @@ -0,0 +1,31 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +Boundary_End() + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Get Basket") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Return (JsonSerializer.Deserialize)") +alt data is not null +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Map To Customer Basket Response") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Return (response)") +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.svg new file mode 100644 index 000000000..f21984987 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Grpc[Container]Data[Container]DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 Sequence - Component level«external_system»External«component»Basket Service«component»Redis Basket Repository«component»Redis DatabaseGet BasketGet Basket AsyncGet Basket KeyString Get Lease AsyncReturn(JsonSerializer.Deserialize)alt[data is not null]Map To Customer BasketResponseReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.png new file mode 100644 index 000000000..2b657077f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.puml new file mode 100644 index 000000000..ed8b5b6b6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.puml @@ -0,0 +1,37 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.svg new file mode 100644 index 000000000..1a306d75d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 Static - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.png new file mode 100644 index 000000000..eb602e2dd Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.puml new file mode 100644 index 000000000..5df6e3183 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.puml @@ -0,0 +1,37 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.svg new file mode 100644 index 000000000..cfb762258 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseGet Basket AsyncString Get Lease AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.png new file mode 100644 index 000000000..54a3122fc Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.puml new file mode 100644 index 000000000..5ae6aaf5d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.puml @@ -0,0 +1,39 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Grpc" #White + participant "Basket Service" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService +end box + + +box "Data" #White + participant "Redis Basket Repository" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository + participant "Redis Database" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Get Basket +group Get Basket +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Async +group Get Basket Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Get Lease Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Return (JsonSerializer.Deserialize) +end +alt data is not null +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Map To Customer Basket Response +group Map To Customer Basket Response +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Return (response) +end +end +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.svg new file mode 100644 index 000000000..dfba1f8cd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - Sequence - Component levelGrpcDataExternalExternalBasket ServiceBasket ServiceRedis Basket RepositoryRedis Basket RepositoryRedis DatabaseRedis DatabaseGet BasketGet BasketGet Basket AsyncGet Basket AsyncGet Basket KeyString Get Lease AsyncReturn (JsonSerializer.Deserialize)alt[data is not null]Map To Customer Basket ResponseMap To Customer Basket ResponseReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.png new file mode 100644 index 000000000..1f8ed637e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.puml new file mode 100644 index 000000000..62c08eb28 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.puml @@ -0,0 +1,17 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Get Basket") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Get Basket Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.svg new file mode 100644 index 000000000..3d525d824 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 Sequence - Container level«external_system»External«container»Grpc«container»DataGet BasketGet Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.png new file mode 100644 index 000000000..5d07254b0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.puml new file mode 100644 index 000000000..7fb5bd1eb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.svg new file mode 100644 index 000000000..3b4ff49e6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 Static - Container levelBasket Api[System]GrpcDataUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.png new file mode 100644 index 000000000..826ad66bb Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.puml new file mode 100644 index 000000000..70756f628 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Get Basket Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.svg new file mode 100644 index 000000000..284baa7d5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 - Container levelBasket Api[System]GrpcDataGet Basket AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.png new file mode 100644 index 000000000..8bdf7a9b1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.puml new file mode 100644 index 000000000..6b6d01efe --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Grpc" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc + participant "Data" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc : Get Basket +group Get Basket +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data : Get Basket Async +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.svg new file mode 100644 index 000000000..0faa2a538 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcDataDataGet BasketGet BasketGet Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.png new file mode 100644 index 000000000..3bd8cf783 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.puml new file mode 100644 index 000000000..351da4954 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "Get Basket") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.svg new file mode 100644 index 000000000..3a836eaf4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 Sequence - Context level«external_system»External«system»Basket ApiGet Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.png new file mode 100644 index 000000000..18cd9a74c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.puml new file mode 100644 index 000000000..3d066a3c2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.svg new file mode 100644 index 000000000..25f132c0c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.png new file mode 100644 index 000000000..d088a3126 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.puml new file mode 100644 index 000000000..47764c1e4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.svg new file mode 100644 index 000000000..de3cbcf70 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.png new file mode 100644 index 000000000..84113471d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.puml new file mode 100644 index 000000000..98cf4d1b0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : Get Basket + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.svg new file mode 100644 index 000000000..5619fb723 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Get Basket - Sequence - Context levelExternalExternalBasket ApiBasket ApiGet Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.png new file mode 100644 index 000000000..e47100bc6 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.puml new file mode 100644 index 000000000..ab712f9dc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.puml @@ -0,0 +1,19 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Map To Customer Basket Response") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Return (response)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.svg new file mode 100644 index 000000000..6113b4eda --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Grpc[Container]DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Sequence - Component level«external_system»External«component»Basket ServiceMap To Customer BasketResponseReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.png new file mode 100644 index 000000000..491268aea Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.puml new file mode 100644 index 000000000..cc10a6605 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.svg new file mode 100644 index 000000000..0302144de --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Static - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.png new file mode 100644 index 000000000..d9ef2efd8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.puml new file mode 100644 index 000000000..6665e9572 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.svg new file mode 100644 index 000000000..495cd2d4a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.png new file mode 100644 index 000000000..bc84c5d93 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.puml new file mode 100644 index 000000000..f9f42727a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.puml @@ -0,0 +1,22 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Grpc" #White + participant "Basket Service" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Map To Customer Basket Response +group Map To Customer Basket Response +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Return (response) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.svg new file mode 100644 index 000000000..8d7cd29db --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - Sequence - Component levelGrpcExternalExternalBasket ServiceBasket ServiceMap To Customer Basket ResponseMap To Customer Basket ResponseReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.png new file mode 100644 index 000000000..f5127bd39 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.puml new file mode 100644 index 000000000..b422e9ec0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Map To Customer Basket Response") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.svg new file mode 100644 index 000000000..da3ddca2b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Sequence - Container level«external_system»External«container»GrpcMap To Customer BasketResponse \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.png new file mode 100644 index 000000000..ddaddcc71 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.puml new file mode 100644 index 000000000..f161ec88e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.svg new file mode 100644 index 000000000..4a554448e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Static - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.png new file mode 100644 index 000000000..ab45e7618 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.puml new file mode 100644 index 000000000..90356c1af --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.svg new file mode 100644 index 000000000..1f0ad4d39 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.png new file mode 100644 index 000000000..42ef958e3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.puml new file mode 100644 index 000000000..e39629c33 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Grpc" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc : Map To Customer Basket Response + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.svg new file mode 100644 index 000000000..4514dca55 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcMap To Customer Basket Response \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.png new file mode 100644 index 000000000..ab79ff199 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.puml new file mode 100644 index 000000000..240ef2f69 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "Map To Customer Basket Response") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.svg new file mode 100644 index 000000000..9b2deb876 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Sequence - Context level«external_system»External«system»Basket ApiMap To Customer BasketResponse \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.png new file mode 100644 index 000000000..4e0c943a8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.puml new file mode 100644 index 000000000..1e0057a68 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.svg new file mode 100644 index 000000000..499a72fb0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.png new file mode 100644 index 000000000..0b50ac0ed Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.puml new file mode 100644 index 000000000..5962f5040 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.svg new file mode 100644 index 000000000..3e285e3eb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.png new file mode 100644 index 000000000..5be27bfaf Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.puml new file mode 100644 index 000000000..7e5cd0dfa --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : Map To Customer Basket Response + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.svg new file mode 100644 index 000000000..0c6f702d7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - Sequence - Context levelExternalExternalBasket ApiBasket ApiMap To Customer Basket Response \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.png new file mode 100644 index 000000000..6f89dd0a5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.puml new file mode 100644 index 000000000..937df09de --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.puml @@ -0,0 +1,19 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Map To Customer Basket") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Return (response)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.svg new file mode 100644 index 000000000..0bcf9eea9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Grpc[Container]DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Sequence - Component level«external_system»External«component»Basket ServiceMap To Customer BasketReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.png new file mode 100644 index 000000000..d71081709 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.puml new file mode 100644 index 000000000..3cf89ddf7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.svg new file mode 100644 index 000000000..132261c6a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Static - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.png new file mode 100644 index 000000000..0dba4e1ab Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.puml new file mode 100644 index 000000000..3fddf0e74 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.svg new file mode 100644 index 000000000..481d67af6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.png new file mode 100644 index 000000000..6c753088e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.puml new file mode 100644 index 000000000..a36b8c529 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.puml @@ -0,0 +1,22 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Grpc" #White + participant "Basket Service" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Map To Customer Basket +group Map To Customer Basket +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Return (response) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.svg new file mode 100644 index 000000000..720859465 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - Sequence - Component levelGrpcExternalExternalBasket ServiceBasket ServiceMap To Customer BasketMap To Customer BasketReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.png new file mode 100644 index 000000000..176d8385d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.puml new file mode 100644 index 000000000..a612cb98d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Map To Customer Basket") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.svg new file mode 100644 index 000000000..da93a808e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Sequence - Container level«external_system»External«container»GrpcMap To Customer Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.png new file mode 100644 index 000000000..39129b246 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.puml new file mode 100644 index 000000000..530207d27 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.svg new file mode 100644 index 000000000..9ad97b993 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Static - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.png new file mode 100644 index 000000000..ebf435b40 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.puml new file mode 100644 index 000000000..3b9781c57 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.svg new file mode 100644 index 000000000..077bb2883 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.png new file mode 100644 index 000000000..a5dc2c356 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.puml new file mode 100644 index 000000000..be903c85c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Grpc" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc : Map To Customer Basket + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.svg new file mode 100644 index 000000000..3db479d10 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcMap To Customer Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.png new file mode 100644 index 000000000..4ad0fe43f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.puml new file mode 100644 index 000000000..8f08ccf76 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "Map To Customer Basket") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.svg new file mode 100644 index 000000000..07ba164ca --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Sequence - Context level«external_system»External«system»Basket ApiMap To Customer Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.png new file mode 100644 index 000000000..df37659b7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.puml new file mode 100644 index 000000000..1371233a5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.svg new file mode 100644 index 000000000..01ce095d0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.png new file mode 100644 index 000000000..f82efa8df Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.puml new file mode 100644 index 000000000..cac2c30d5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.svg new file mode 100644 index 000000000..c3c779158 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.png new file mode 100644 index 000000000..0ac6434ac Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.puml new file mode 100644 index 000000000..f9dc4c3b2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : Map To Customer Basket + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.svg new file mode 100644 index 000000000..7273ccd60 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Map To Customer Basket - Sequence - Context levelExternalExternalBasket ApiBasket ApiMap To Customer Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.png new file mode 100644 index 000000000..40e0d1aea Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.puml new file mode 100644 index 000000000..1c922f91c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Throw Basket Does Not Exist") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.svg new file mode 100644 index 000000000..75cf9ae3a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Grpc[Container]DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Sequence - Component level«external_system»External«component»Basket ServiceThrow Basket Does NotExist \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.png new file mode 100644 index 000000000..cdb53ead2 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.puml new file mode 100644 index 000000000..a39f8d4b3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.svg new file mode 100644 index 000000000..3bec65940 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Static - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.png new file mode 100644 index 000000000..79efaa30c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.puml new file mode 100644 index 000000000..6704f3f30 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.svg new file mode 100644 index 000000000..229d67704 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.png new file mode 100644 index 000000000..2529155e7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.puml new file mode 100644 index 000000000..dd4c133c6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Grpc" #White + participant "Basket Service" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Throw Basket Does Not Exist + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.svg new file mode 100644 index 000000000..1bbe1ea0c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - Sequence - Component levelGrpcExternalExternalBasket ServiceBasket ServiceThrow Basket Does Not Exist \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.png new file mode 100644 index 000000000..f971afbe7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.puml new file mode 100644 index 000000000..fd4c03560 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Throw Basket Does Not Exist") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.svg new file mode 100644 index 000000000..13ecca5ce --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Sequence - Container level«external_system»External«container»GrpcThrow Basket Does NotExist \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.png new file mode 100644 index 000000000..4056db10e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.puml new file mode 100644 index 000000000..b4a166a36 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.svg new file mode 100644 index 000000000..9cddc9b8b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Static - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.png new file mode 100644 index 000000000..72f8951ef Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.puml new file mode 100644 index 000000000..ac076bfea --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.svg new file mode 100644 index 000000000..f7716060a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.png new file mode 100644 index 000000000..e46e9ba03 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.puml new file mode 100644 index 000000000..a1890c8a2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Grpc" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc : Throw Basket Does Not Exist + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.svg new file mode 100644 index 000000000..1e0bff955 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcThrow Basket Does Not Exist \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.png new file mode 100644 index 000000000..2b9782021 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.puml new file mode 100644 index 000000000..c05f99d8c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "Throw Basket Does Not Exist") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.svg new file mode 100644 index 000000000..e81194d21 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Sequence - Context level«external_system»External«system»Basket ApiThrow Basket Does NotExist \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.png new file mode 100644 index 000000000..73c310f88 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.puml new file mode 100644 index 000000000..d12e54769 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.svg new file mode 100644 index 000000000..95819d548 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.png new file mode 100644 index 000000000..2562aa79c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.puml new file mode 100644 index 000000000..e06448380 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.svg new file mode 100644 index 000000000..3fbd23f03 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.png new file mode 100644 index 000000000..7cf805b00 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.puml new file mode 100644 index 000000000..1b0b38dbb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : Throw Basket Does Not Exist + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.svg new file mode 100644 index 000000000..bcb10afcb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - Sequence - Context levelExternalExternalBasket ApiBasket ApiThrow Basket Does Not Exist \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.png new file mode 100644 index 000000000..2c6a819e5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.puml new file mode 100644 index 000000000..0a8436e11 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Throw Not Authenticated") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.svg new file mode 100644 index 000000000..1e1982ef2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Grpc[Container]DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Sequence - Component level«external_system»External«component»Basket ServiceThrow Not Authenticated \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.png new file mode 100644 index 000000000..d2349e9b9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.puml new file mode 100644 index 000000000..1332bef8c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.svg new file mode 100644 index 000000000..28a62025d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Static - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.png new file mode 100644 index 000000000..14fec1eb4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.puml new file mode 100644 index 000000000..100f531f3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.svg new file mode 100644 index 000000000..a0ee9362e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.png new file mode 100644 index 000000000..63ba25a27 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.puml new file mode 100644 index 000000000..257238763 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Grpc" #White + participant "Basket Service" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Throw Not Authenticated + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.svg new file mode 100644 index 000000000..0a7878f21 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - Sequence - Component levelGrpcExternalExternalBasket ServiceBasket ServiceThrow Not Authenticated \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.png new file mode 100644 index 000000000..a9e9efc04 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.puml new file mode 100644 index 000000000..cce43d033 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Throw Not Authenticated") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.svg new file mode 100644 index 000000000..f124a8e6a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Sequence - Container level«external_system»External«container»GrpcThrow Not Authenticated \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.png new file mode 100644 index 000000000..f480396b0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.puml new file mode 100644 index 000000000..26984f3c3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.svg new file mode 100644 index 000000000..5cc1b6291 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Static - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.png new file mode 100644 index 000000000..68eff8c14 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.puml new file mode 100644 index 000000000..84c9b3fd6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.svg new file mode 100644 index 000000000..215da4e14 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.png new file mode 100644 index 000000000..697031e90 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.puml new file mode 100644 index 000000000..a945eee81 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Grpc" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc : Throw Not Authenticated + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.svg new file mode 100644 index 000000000..46c35b167 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcThrow Not Authenticated \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.png new file mode 100644 index 000000000..0528490f1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.puml new file mode 100644 index 000000000..4ddb9e98f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "Throw Not Authenticated") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.svg new file mode 100644 index 000000000..43ef8388c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Sequence - Context level«external_system»External«system»Basket ApiThrow Not Authenticated \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.png new file mode 100644 index 000000000..97c0103e0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.puml new file mode 100644 index 000000000..1a0df8fb5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.svg new file mode 100644 index 000000000..59dc5de75 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.png new file mode 100644 index 000000000..1bbac81ea Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.puml new file mode 100644 index 000000000..2f40dd549 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.svg new file mode 100644 index 000000000..003191c78 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.png new file mode 100644 index 000000000..84ad9ab6a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.puml new file mode 100644 index 000000000..d5322308a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : Throw Not Authenticated + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.svg new file mode 100644 index 000000000..9eb2f1c94 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Throw Not Authenticated - Sequence - Context levelExternalExternalBasket ApiBasket ApiThrow Not Authenticated \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.png new file mode 100644 index 000000000..665d1734a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.puml new file mode 100644 index 000000000..4a9ec5aa6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.puml @@ -0,0 +1,40 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +Boundary_End() + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Update Basket") +alt string.IsNullOrEmpty(userId) +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Throw Not Authenticated") +end +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Map To Customer Basket") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Return (response)") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Update Basket Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Set Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Return (JsonSerializer.Deserialize)") +alt response is null +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Throw Basket Does Not Exist") +end +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Map To Customer Basket Response") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Return (response)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.svg new file mode 100644 index 000000000..f29874356 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]Grpc[Container]Data[Container]DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 Sequence - Component level«external_system»External«component»Basket Service«component»Redis Basket Repository«component»Redis DatabaseUpdate Basketalt[string.IsNullOrEmpty(userId)]Throw Not AuthenticatedMap To Customer BasketReturn (response)Update Basket AsyncGet Basket KeyString Set AsyncGet Basket AsyncGet Basket KeyString Get Lease AsyncReturn(JsonSerializer.Deserialize)alt[response is null]Throw Basket Does NotExistMap To Customer BasketResponseReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.png new file mode 100644 index 000000000..e7dab4301 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.puml new file mode 100644 index 000000000..4c39f5164 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.puml @@ -0,0 +1,37 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.svg new file mode 100644 index 000000000..ce60bc029 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 Static - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.png new file mode 100644 index 000000000..f3078f8c8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.puml new file mode 100644 index 000000000..cdf0c99fc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.puml @@ -0,0 +1,37 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Update Basket Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Set Async\nString Get Lease Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.svg new file mode 100644 index 000000000..488511af3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseUpdate Basket AsyncString Set AsyncString Get Lease AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.png new file mode 100644 index 000000000..427f7e9b2 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.puml new file mode 100644 index 000000000..e15417086 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.puml @@ -0,0 +1,52 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + +box "Grpc" #White + participant "Basket Service" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService +end box + + +box "Data" #White + participant "Redis Basket Repository" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository + participant "Redis Database" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Update Basket +group Update Basket +alt string.IsNullOrEmpty(userId) +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Throw Not Authenticated +end +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Map To Customer Basket +group Map To Customer Basket +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Return (response) +end +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Update Basket Async +group Update Basket Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Set Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Async +group Get Basket Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Get Lease Async +DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Return (JsonSerializer.Deserialize) +end +end +alt response is null +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Throw Basket Does Not Exist +end +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Map To Customer Basket Response +group Map To Customer Basket Response +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Return (response) +end +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.svg new file mode 100644 index 000000000..4ea9c8cc4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - Sequence - Component levelGrpcDataExternalExternalBasket ServiceBasket ServiceRedis Basket RepositoryRedis Basket RepositoryRedis DatabaseRedis DatabaseUpdate BasketUpdate Basketalt[string.IsNullOrEmpty(userId)]Throw Not AuthenticatedMap To Customer BasketMap To Customer BasketReturn (response)Update Basket AsyncUpdate Basket AsyncGet Basket KeyString Set AsyncGet Basket AsyncGet Basket AsyncGet Basket KeyString Get Lease AsyncReturn (JsonSerializer.Deserialize)alt[response is null]Throw Basket Does Not ExistMap To Customer Basket ResponseMap To Customer Basket ResponseReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.png new file mode 100644 index 000000000..c281deaed Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.puml new file mode 100644 index 000000000..0d727906f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.puml @@ -0,0 +1,17 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Update Basket") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Update Basket Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.svg new file mode 100644 index 000000000..083cc03c5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Basket Api[System]DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 Sequence - Container level«external_system»External«container»Grpc«container»DataUpdate BasketUpdate Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.png new file mode 100644 index 000000000..7e2b7a0c4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.puml new file mode 100644 index 000000000..939d1a25a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.svg new file mode 100644 index 000000000..adfd19943 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 Static - Container levelBasket Api[System]GrpcDataUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.png new file mode 100644 index 000000000..ad621a711 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.puml new file mode 100644 index 000000000..9d0e827fc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Update Basket Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.svg new file mode 100644 index 000000000..a48b85a1c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 - Container levelBasket Api[System]GrpcDataUpdate Basket AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.png new file mode 100644 index 000000000..b482956a9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.puml new file mode 100644 index 000000000..2c9ecac25 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Basket Api" #White + participant "Grpc" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc + participant "Data" as DotNetEShop.SoftwareSystems.BasketApi.Containers.Data +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc : Update Basket +group Update Basket +DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc -> DotNetEShop.SoftwareSystems.BasketApi.Containers.Data : Update Basket Async +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.svg new file mode 100644 index 000000000..5d2a56f81 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcDataDataUpdate BasketUpdate BasketUpdate Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.png new file mode 100644 index 000000000..4236636de Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.puml new file mode 100644 index 000000000..d113eedcc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.BasketApi, "Update Basket") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.svg new file mode 100644 index 000000000..3fb974009 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 Sequence - Context level«external_system»External«system»Basket ApiUpdate Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.png new file mode 100644 index 000000000..8b5cb68df Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.puml new file mode 100644 index 000000000..2c1ca6870 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.svg new file mode 100644 index 000000000..8c231cba7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.png new file mode 100644 index 000000000..8656c03b4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.puml new file mode 100644 index 000000000..2b2d61d67 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.svg new file mode 100644 index 000000000..3416c2c84 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.png new file mode 100644 index 000000000..4ab1c0858 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.puml new file mode 100644 index 000000000..595ad8aac --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Basket Api" as DotNetEShop.SoftwareSystems.BasketApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.BasketApi : Update Basket + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.svg new file mode 100644 index 000000000..42e6a61a0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - Basket Service - Update Basket - Sequence - Context levelExternalExternalBasket ApiBasket ApiUpdate Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.png new file mode 100644 index 000000000..453705a2e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.puml new file mode 100644 index 000000000..f50f17d97 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.svg new file mode 100644 index 000000000..4ae3b614f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - C4 Static - Container levelBasket Api[System]GrpcDataUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4.png new file mode 100644 index 000000000..45fac1565 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4.puml new file mode 100644 index 000000000..53e7c0d6e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - Grpc - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4.svg new file mode 100644 index 000000000..318137be8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Containers/Grpc/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - Grpc - C4 - Container levelBasket Api[System]GrpcDataDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4 Static.png new file mode 100644 index 000000000..95073662f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4 Static.puml new file mode 100644 index 000000000..27134d90c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4 Static.svg new file mode 100644 index 000000000..9238e1bd7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4.png new file mode 100644 index 000000000..f70a7fc36 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4.puml new file mode 100644 index 000000000..c530a4db5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Basket Api - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4.svg new file mode 100644 index 000000000..3f6e6f519 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Basket Api/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Basket Api - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4 Static.png new file mode 100644 index 000000000..801aba9df Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4 Static.puml new file mode 100644 index 000000000..897436524 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4 Static.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4 Static.svg new file mode 100644 index 000000000..b11b044fe --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4.png new file mode 100644 index 000000000..afdff0ecd Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4.puml new file mode 100644 index 000000000..dad32a6a3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4.svg new file mode 100644 index 000000000..f9a7f77e8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4 Static.png new file mode 100644 index 000000000..3461725a9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4 Static.puml new file mode 100644 index 000000000..fca8782c5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4 Static.svg new file mode 100644 index 000000000..aa9df6687 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4.png new file mode 100644 index 000000000..55df41802 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4.puml new file mode 100644 index 000000000..b1315302d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4.svg new file mode 100644 index 000000000..e5f69f9e0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.png new file mode 100644 index 000000000..fe0a01276 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.puml new file mode 100644 index 000000000..38d6ccacc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.svg new file mode 100644 index 000000000..59959d006 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4.png new file mode 100644 index 000000000..5b7c995ce Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4.puml new file mode 100644 index 000000000..95c0643f0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4.svg new file mode 100644 index 000000000..d33f8a116 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.png new file mode 100644 index 000000000..63badd52f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.puml new file mode 100644 index 000000000..c3d62c902 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.svg new file mode 100644 index 000000000..76edde4cf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.png new file mode 100644 index 000000000..ed5ff8a94 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.puml new file mode 100644 index 000000000..4f02fcd86 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.svg new file mode 100644 index 000000000..f0032775d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.png new file mode 100644 index 000000000..f812ee2a0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.puml new file mode 100644 index 000000000..7c808485b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.puml @@ -0,0 +1,19 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.svg new file mode 100644 index 000000000..39a9994cb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Sequence - Component level«external_system»External«component»Catalog ApiChange Uri PlaceholderReturn (items) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.png new file mode 100644 index 000000000..1dcb7374a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.puml new file mode 100644 index 000000000..68c1c9428 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.svg new file mode 100644 index 000000000..a3a32aebd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.png new file mode 100644 index 000000000..904a2ed1f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.puml new file mode 100644 index 000000000..e29ec4eab --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.svg new file mode 100644 index 000000000..f5dc46975 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.png new file mode 100644 index 000000000..87ab724d3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.puml new file mode 100644 index 000000000..43d8721fe --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.puml @@ -0,0 +1,22 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder +group Change Uri Placeholder +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.svg new file mode 100644 index 000000000..755bf3029 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiChange Uri PlaceholderChange Uri PlaceholderReturn (items) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.png new file mode 100644 index 000000000..58d2f8e01 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.puml new file mode 100644 index 000000000..16cf30199 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Change Uri Placeholder") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.svg new file mode 100644 index 000000000..ddd4cb095 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Sequence - Container level«external_system»External«container»ApiChange Uri Placeholder \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.png new file mode 100644 index 000000000..cd5ab0eb9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.puml new file mode 100644 index 000000000..63e18c08f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.svg new file mode 100644 index 000000000..30dc2049b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.png new file mode 100644 index 000000000..a7e6577a4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.puml new file mode 100644 index 000000000..33bb1f31f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.svg new file mode 100644 index 000000000..2ae2fc9fd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.png new file mode 100644 index 000000000..60ff40996 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.puml new file mode 100644 index 000000000..6284e92c6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Change Uri Placeholder + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.svg new file mode 100644 index 000000000..974a1c805 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - Sequence - Container levelCatalog ApiExternalExternalApiApiChange Uri Placeholder \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.png new file mode 100644 index 000000000..f5a875d4e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.puml new file mode 100644 index 000000000..1b4522ba9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Change Uri Placeholder") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.svg new file mode 100644 index 000000000..d35a2bd2c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Sequence - Context level«external_system»External«system»Catalog ApiChange Uri Placeholder \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.png new file mode 100644 index 000000000..8dce56733 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.puml new file mode 100644 index 000000000..6d077e33a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.svg new file mode 100644 index 000000000..c91274782 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.png new file mode 100644 index 000000000..8a7ef6128 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.puml new file mode 100644 index 000000000..27fc6ffb0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.svg new file mode 100644 index 000000000..9dd0cd822 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.png new file mode 100644 index 000000000..1423543d1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.puml new file mode 100644 index 000000000..84ab3899f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Change Uri Placeholder + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.svg new file mode 100644 index 000000000..0650769f4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Change Uri Placeholder - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiChange Uri Placeholder \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.png new file mode 100644 index 000000000..14fc364a4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.puml new file mode 100644 index 000000000..fc672bbd4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.puml @@ -0,0 +1,25 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Create Item") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Save Changes Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.CreatedAtRoute)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.svg new file mode 100644 index 000000000..a01ede066 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]Infrastructure[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextCreate ItemCatalog Items AddSave Changes AsyncReturn(TypedResults.CreatedAtRoute) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.png new file mode 100644 index 000000000..34bac68e3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.puml new file mode 100644 index 000000000..c279fe9f6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.svg new file mode 100644 index 000000000..c5167cfa3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.png new file mode 100644 index 000000000..a8d0a662c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.puml new file mode 100644 index 000000000..01a9f320f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.svg new file mode 100644 index 000000000..16086ca72 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items AddSave Changes AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.png new file mode 100644 index 000000000..a91f56c50 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.puml new file mode 100644 index 000000000..99a56d678 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.puml @@ -0,0 +1,29 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Create Item +group Create Item +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Add +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Save Changes Async +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.CreatedAtRoute) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.svg new file mode 100644 index 000000000..1375996a5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextCreate ItemCreate ItemCatalog Items AddSave Changes AsyncReturn (TypedResults.CreatedAtRoute) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.png new file mode 100644 index 000000000..2fb04cdde Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.puml new file mode 100644 index 000000000..475476546 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Create Item") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Save Changes Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.svg new file mode 100644 index 000000000..fe8819e65 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureCreate ItemCatalog Items AddSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.png new file mode 100644 index 000000000..921aa9571 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.puml new file mode 100644 index 000000000..cad82cef8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.svg new file mode 100644 index 000000000..dedb6ef7c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.png new file mode 100644 index 000000000..132e0be92 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.puml new file mode 100644 index 000000000..fd8151822 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.svg new file mode 100644 index 000000000..9833aa816 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items AddSave Changes AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.png new file mode 100644 index 000000000..b49d3277a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.puml new file mode 100644 index 000000000..f583c3de0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.puml @@ -0,0 +1,20 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Create Item +group Create Item +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Add +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Save Changes Async +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.svg new file mode 100644 index 000000000..410402986 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureCreate ItemCreate ItemCatalog Items AddSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.png new file mode 100644 index 000000000..b0dabc73c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.puml new file mode 100644 index 000000000..d6313d4bd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Create Item") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.svg new file mode 100644 index 000000000..7a939afba --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 Sequence - Context level«external_system»External«system»Catalog ApiCreate Item \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.png new file mode 100644 index 000000000..abdb348f3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.puml new file mode 100644 index 000000000..ed4f92390 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.svg new file mode 100644 index 000000000..e64f95ae4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.png new file mode 100644 index 000000000..287d63abe Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.puml new file mode 100644 index 000000000..71990d04b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.svg new file mode 100644 index 000000000..719e58fff --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.png new file mode 100644 index 000000000..43b65194b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.puml new file mode 100644 index 000000000..57ba6ea2a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Create Item + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.svg new file mode 100644 index 000000000..3374232c3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Create Item - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCreate Item \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.png new file mode 100644 index 000000000..569615a01 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.puml new file mode 100644 index 000000000..23c496561 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Delete Item By Id") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Single Or Default") +alt item is null +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.NotFound)") +end +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Remove") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Save Changes Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.NoContent)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.svg new file mode 100644 index 000000000..321978026 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]Infrastructure[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextDelete Item By IdCatalog Items Single OrDefaultalt[item is null]Return(TypedResults.NotFound)Catalog Items RemoveSave Changes AsyncReturn(TypedResults.NoContent) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.png new file mode 100644 index 000000000..2428732c6 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.puml new file mode 100644 index 000000000..be5263205 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.svg new file mode 100644 index 000000000..9d3100f3c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.png new file mode 100644 index 000000000..c5c5fd222 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.puml new file mode 100644 index 000000000..4559dbc85 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Single Or Default\nCatalog Items Remove\nSave Changes Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.svg new file mode 100644 index 000000000..5e6e718bb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items Single OrDefaultCatalog Items RemoveSave Changes AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.png new file mode 100644 index 000000000..d00d22e66 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.puml new file mode 100644 index 000000000..181039835 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.puml @@ -0,0 +1,33 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Delete Item By Id +group Delete Item By Id +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Single Or Default +alt item is null +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.NotFound) +end +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Remove +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Save Changes Async +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.NoContent) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.svg new file mode 100644 index 000000000..1ec9c6267 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextDelete Item By IdDelete Item By IdCatalog Items Single Or Defaultalt[item is null]Return (TypedResults.NotFound)Catalog Items RemoveSave Changes AsyncReturn (TypedResults.NoContent) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.png new file mode 100644 index 000000000..8872a91be Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.puml new file mode 100644 index 000000000..2ed26f746 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.puml @@ -0,0 +1,19 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Delete Item By Id") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Single Or Default") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Remove") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Save Changes Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.svg new file mode 100644 index 000000000..4dd3cd1af --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureDelete Item By IdCatalog Items Single OrDefaultCatalog Items RemoveSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.png new file mode 100644 index 000000000..826456f66 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.puml new file mode 100644 index 000000000..cf8a9a3f5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.svg new file mode 100644 index 000000000..cd3901e96 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.png new file mode 100644 index 000000000..598fb7fcd Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.puml new file mode 100644 index 000000000..2b9ca30b9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Single Or Default\nCatalog Items Remove\nSave Changes Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.svg new file mode 100644 index 000000000..f513aaaf4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items Single OrDefaultCatalog Items RemoveSave Changes AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.puml new file mode 100644 index 000000000..44210be80 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.puml @@ -0,0 +1,21 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Delete Item By Id +group Delete Item By Id +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Single Or Default +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Remove +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Save Changes Async +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.svg new file mode 100644 index 000000000..28169fc04 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureDelete Item By IdDelete Item By IdCatalog Items Single Or DefaultCatalog Items RemoveSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.png new file mode 100644 index 000000000..c0abeadd9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.puml new file mode 100644 index 000000000..775f53667 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Delete Item By Id") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.svg new file mode 100644 index 000000000..6dc487369 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Sequence - Context level«external_system»External«system»Catalog ApiDelete Item By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.png new file mode 100644 index 000000000..042635a99 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.puml new file mode 100644 index 000000000..f86ac4a54 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.svg new file mode 100644 index 000000000..a33e421c1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.png new file mode 100644 index 000000000..cf99ba4b2 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.puml new file mode 100644 index 000000000..fd30b05dd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.svg new file mode 100644 index 000000000..2c9977f39 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.png new file mode 100644 index 000000000..9181452b8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.puml new file mode 100644 index 000000000..5a9d84003 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Delete Item By Id + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.svg new file mode 100644 index 000000000..f3dcfd4f7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Delete Item By Id - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiDelete Item By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.png new file mode 100644 index 000000000..04805553b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.puml new file mode 100644 index 000000000..e7754eac7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.puml @@ -0,0 +1,26 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get All Items") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.svg new file mode 100644 index 000000000..29769d4c6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]Infrastructure[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextGet All ItemsCatalog Items To ListAsyncChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.png new file mode 100644 index 000000000..c27721cc3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.puml new file mode 100644 index 000000000..e18a2296a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.svg new file mode 100644 index 000000000..fb0c0196d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.png new file mode 100644 index 000000000..b2f1fbd91 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.puml new file mode 100644 index 000000000..5267f56c0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.svg new file mode 100644 index 000000000..4b41ab910 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.png new file mode 100644 index 000000000..7c2d4e6fd Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.puml new file mode 100644 index 000000000..87af1f82c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.puml @@ -0,0 +1,32 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get All Items +group Get All Items +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder +group Change Uri Placeholder +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) +end +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.svg new file mode 100644 index 000000000..a4384f9c9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextGet All ItemsGet All ItemsCatalog Items To List AsyncChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.png new file mode 100644 index 000000000..4ace1da8f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.puml new file mode 100644 index 000000000..44ff39d26 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.puml @@ -0,0 +1,17 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Get All Items") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.svg new file mode 100644 index 000000000..cbd107aeb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureGet All ItemsCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.png new file mode 100644 index 000000000..8eef61f83 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.puml new file mode 100644 index 000000000..4d68e55bb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.svg new file mode 100644 index 000000000..562ae772c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.png new file mode 100644 index 000000000..55c26b76b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.puml new file mode 100644 index 000000000..ebcfd9c5a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.svg new file mode 100644 index 000000000..effcb9ec5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.png new file mode 100644 index 000000000..ef42781c7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.puml new file mode 100644 index 000000000..45b4f364f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Get All Items +group Get All Items +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.svg new file mode 100644 index 000000000..dfe09929c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureGet All ItemsGet All ItemsCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.png new file mode 100644 index 000000000..9532094a1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.puml new file mode 100644 index 000000000..5c06825bf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Get All Items") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.svg new file mode 100644 index 000000000..545320326 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet All Items \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.png new file mode 100644 index 000000000..71c8175dd Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.puml new file mode 100644 index 000000000..524a4c0dc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.svg new file mode 100644 index 000000000..9991ba39f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.png new file mode 100644 index 000000000..99f2cb54e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.puml new file mode 100644 index 000000000..a73c73137 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.svg new file mode 100644 index 000000000..c9f719ff7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.png new file mode 100644 index 000000000..4a9476c64 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.puml new file mode 100644 index 000000000..b14158ada --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Get All Items + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.svg new file mode 100644 index 000000000..beef21d5a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get All Items - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet All Items \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.png new file mode 100644 index 000000000..fe45acfc8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.puml new file mode 100644 index 000000000..0098d4694 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Full Path") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.svg new file mode 100644 index 000000000..1a4eac59d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 Sequence - Component level«external_system»External«component»Catalog ApiGet Full Path \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.png new file mode 100644 index 000000000..9de7bd40f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.puml new file mode 100644 index 000000000..8b0eb4ade --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.svg new file mode 100644 index 000000000..f833018e7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.png new file mode 100644 index 000000000..70644d678 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.puml new file mode 100644 index 000000000..da590effa --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.svg new file mode 100644 index 000000000..cbf954a8c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.png new file mode 100644 index 000000000..a981fedd1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.puml new file mode 100644 index 000000000..5a40eb1f0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Full Path + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.svg new file mode 100644 index 000000000..29d05bf1d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiGet Full Path \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.png new file mode 100644 index 000000000..a9d0999dd Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.puml new file mode 100644 index 000000000..26cf86032 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Get Full Path") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.svg new file mode 100644 index 000000000..330ad8612 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 Sequence - Container level«external_system»External«container»ApiGet Full Path \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.png new file mode 100644 index 000000000..32be57ea5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.puml new file mode 100644 index 000000000..ab0caf33e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.svg new file mode 100644 index 000000000..49d2f7ecc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.png new file mode 100644 index 000000000..581f7de30 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.puml new file mode 100644 index 000000000..98f15cc1a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.svg new file mode 100644 index 000000000..bc916fe0e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.png new file mode 100644 index 000000000..6273e3e37 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.puml new file mode 100644 index 000000000..75eba5d2b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Get Full Path + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.svg new file mode 100644 index 000000000..e358c1d01 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - Sequence - Container levelCatalog ApiExternalExternalApiApiGet Full Path \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.png new file mode 100644 index 000000000..5c5a11150 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.puml new file mode 100644 index 000000000..79ec5da81 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Get Full Path") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.svg new file mode 100644 index 000000000..ff2e1f54f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Full Path \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.png new file mode 100644 index 000000000..bbdb4b774 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.puml new file mode 100644 index 000000000..7c01a675a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.svg new file mode 100644 index 000000000..29ade3c58 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.png new file mode 100644 index 000000000..db6bde395 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.puml new file mode 100644 index 000000000..672ab7571 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.svg new file mode 100644 index 000000000..eba58be72 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.png new file mode 100644 index 000000000..052e43ec1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.puml new file mode 100644 index 000000000..336290a86 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Get Full Path + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.svg new file mode 100644 index 000000000..01b7ee989 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Full Path - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Full Path \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.png new file mode 100644 index 000000000..a924aaf8e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.puml new file mode 100644 index 000000000..28d993105 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Image Mime Type From Image File Extension") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.svg new file mode 100644 index 000000000..136a428ab --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Sequence - Component level«external_system»External«component»Catalog ApiGet Image Mime TypeFrom Image File Extension \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.png new file mode 100644 index 000000000..1620495a7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.puml new file mode 100644 index 000000000..16b7bb36d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.svg new file mode 100644 index 000000000..edc98f82d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.png new file mode 100644 index 000000000..7fb89cb3a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.puml new file mode 100644 index 000000000..6ad94bbc5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.svg new file mode 100644 index 000000000..d5d66002a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.png new file mode 100644 index 000000000..10f0fd7d3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.puml new file mode 100644 index 000000000..155ee67c0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Image Mime Type From Image File Extension + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.svg new file mode 100644 index 000000000..4912ff303 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiGet Image Mime Type From Image File Extension \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.png new file mode 100644 index 000000000..08d4d5925 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.puml new file mode 100644 index 000000000..b347558cc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Get Image Mime Type From Image File Extension") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.svg new file mode 100644 index 000000000..67b857bac --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Sequence - Container level«external_system»External«container»ApiGet Image Mime TypeFrom Image File Extension \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.png new file mode 100644 index 000000000..afe3b6375 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.puml new file mode 100644 index 000000000..5beec4a07 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.svg new file mode 100644 index 000000000..e2e879882 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.png new file mode 100644 index 000000000..d927163b4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.puml new file mode 100644 index 000000000..12300084b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.svg new file mode 100644 index 000000000..a28d4d56d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.png new file mode 100644 index 000000000..c3a42332b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.puml new file mode 100644 index 000000000..321fb8e7b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Get Image Mime Type From Image File Extension + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.svg new file mode 100644 index 000000000..922b2e5fc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - Sequence - Container levelCatalog ApiExternalExternalApiApiGet Image Mime Type From Image File Extension \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.png new file mode 100644 index 000000000..d262662d8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.puml new file mode 100644 index 000000000..a3fb0886e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Get Image Mime Type From Image File Extension") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.svg new file mode 100644 index 000000000..13306c056 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Image Mime TypeFrom Image File Extension \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.png new file mode 100644 index 000000000..14409b1fb Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.puml new file mode 100644 index 000000000..380024c97 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.svg new file mode 100644 index 000000000..d598a0c64 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.png new file mode 100644 index 000000000..6a91da97b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.puml new file mode 100644 index 000000000..45cd78231 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.svg new file mode 100644 index 000000000..4198f796d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.png new file mode 100644 index 000000000..2544a9a22 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.puml new file mode 100644 index 000000000..430670593 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Get Image Mime Type From Image File Extension + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.svg new file mode 100644 index 000000000..2d83d5c0b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Image Mime Type From Image File Extension \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.png new file mode 100644 index 000000000..8e4afd46c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.puml new file mode 100644 index 000000000..882272234 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.puml @@ -0,0 +1,25 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Item By Id") +alt id <= 0 +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.BadRequest)") +end +alt item == null +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.NotFound)") +end +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.svg new file mode 100644 index 000000000..ca4dbc0bb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Sequence - Component level«external_system»External«component»Catalog ApiGet Item By Idalt[id <= 0]Return(TypedResults.BadRequest)alt[item == null]Return(TypedResults.NotFound)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.png new file mode 100644 index 000000000..9d9bcef30 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.puml new file mode 100644 index 000000000..fdade8a17 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.svg new file mode 100644 index 000000000..79dbaa244 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.png new file mode 100644 index 000000000..0d3512498 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.puml new file mode 100644 index 000000000..32955d33d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.svg new file mode 100644 index 000000000..735eb038d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.png new file mode 100644 index 000000000..31c0cdf71 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.puml new file mode 100644 index 000000000..d3215c58c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.puml @@ -0,0 +1,28 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Item By Id +group Get Item By Id +alt id <= 0 +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.BadRequest) +end +alt item == null +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.NotFound) +end +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.svg new file mode 100644 index 000000000..5b6459abb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiGet Item By IdGet Item By Idalt[id <= 0]Return (TypedResults.BadRequest)alt[item == null]Return (TypedResults.NotFound)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.png new file mode 100644 index 000000000..d30de23dc Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.puml new file mode 100644 index 000000000..10165c881 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Get Item By Id") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.svg new file mode 100644 index 000000000..fbd253315 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Sequence - Container level«external_system»External«container»ApiGet Item By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.png new file mode 100644 index 000000000..5ab44b726 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.puml new file mode 100644 index 000000000..6c2ffeae8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.svg new file mode 100644 index 000000000..82e35eb59 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.png new file mode 100644 index 000000000..bed0e98d9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.puml new file mode 100644 index 000000000..7b381d4f4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.svg new file mode 100644 index 000000000..5d71b826c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.png new file mode 100644 index 000000000..9deadd6b6 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.puml new file mode 100644 index 000000000..aa452b788 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Get Item By Id + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.svg new file mode 100644 index 000000000..823402ef8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - Sequence - Container levelCatalog ApiExternalExternalApiApiGet Item By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.png new file mode 100644 index 000000000..24980b952 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.puml new file mode 100644 index 000000000..b5b1a41b7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Get Item By Id") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.svg new file mode 100644 index 000000000..b6f86890d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Item By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.png new file mode 100644 index 000000000..24fae97d2 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.puml new file mode 100644 index 000000000..163e368a1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.svg new file mode 100644 index 000000000..7a639b97a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.png new file mode 100644 index 000000000..67e103d80 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.puml new file mode 100644 index 000000000..c3821442b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.svg new file mode 100644 index 000000000..583907454 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.png new file mode 100644 index 000000000..68cbb627f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.puml new file mode 100644 index 000000000..ed5e453e4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Get Item By Id + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.svg new file mode 100644 index 000000000..4c4a87f09 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item By Id - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Item By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.png new file mode 100644 index 000000000..6fa56cffe Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.puml new file mode 100644 index 000000000..cb92b603b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Item Picture By Id") +alt item is null +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.NotFound)") +end +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Full Path") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Image Mime Type From Image File Extension") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.PhysicalFile)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.svg new file mode 100644 index 000000000..1ac35b0ea --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Sequence - Component level«external_system»External«component»Catalog ApiGet Item Picture By Idalt[item is null]Return(TypedResults.NotFound)Get Full PathGet Image Mime TypeFrom Image File ExtensionReturn(TypedResults.PhysicalFile) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.png new file mode 100644 index 000000000..3a6a76e72 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.puml new file mode 100644 index 000000000..aa16cea8b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.svg new file mode 100644 index 000000000..da7d43904 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.png new file mode 100644 index 000000000..3da219717 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.puml new file mode 100644 index 000000000..5f85ee0b7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.svg new file mode 100644 index 000000000..8d64f505a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.png new file mode 100644 index 000000000..4d1e0e2e5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.puml new file mode 100644 index 000000000..53698907e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.puml @@ -0,0 +1,27 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Item Picture By Id +group Get Item Picture By Id +alt item is null +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.NotFound) +end +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Full Path +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Image Mime Type From Image File Extension +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.PhysicalFile) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.svg new file mode 100644 index 000000000..8834af9f9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiGet Item Picture By IdGet Item Picture By Idalt[item is null]Return (TypedResults.NotFound)Get Full PathGet Image Mime Type From Image File ExtensionReturn (TypedResults.PhysicalFile) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.png new file mode 100644 index 000000000..198c56a6a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.puml new file mode 100644 index 000000000..246c728e1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Get Item Picture By Id") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.svg new file mode 100644 index 000000000..3e5b1dc1f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Sequence - Container level«external_system»External«container»ApiGet Item Picture By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.png new file mode 100644 index 000000000..2a84bf091 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.puml new file mode 100644 index 000000000..6b8f01b92 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.svg new file mode 100644 index 000000000..924dad873 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.png new file mode 100644 index 000000000..32d9a62b0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.puml new file mode 100644 index 000000000..3fc9531f3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.svg new file mode 100644 index 000000000..c5ab98a7a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.png new file mode 100644 index 000000000..f99ae2975 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.puml new file mode 100644 index 000000000..51c3170f2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Get Item Picture By Id + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.svg new file mode 100644 index 000000000..b85558618 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - Sequence - Container levelCatalog ApiExternalExternalApiApiGet Item Picture By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.png new file mode 100644 index 000000000..c2830e081 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.puml new file mode 100644 index 000000000..16d6aa67a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Get Item Picture By Id") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.svg new file mode 100644 index 000000000..ff13ebc34 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Item Picture By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.png new file mode 100644 index 000000000..680f70f50 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.puml new file mode 100644 index 000000000..548d3e8a4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.svg new file mode 100644 index 000000000..8d0e49fe2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.png new file mode 100644 index 000000000..9305230db Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.puml new file mode 100644 index 000000000..f14b775cf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.svg new file mode 100644 index 000000000..c3e269f46 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.png new file mode 100644 index 000000000..4976c65ac Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.puml new file mode 100644 index 000000000..0d00c2a7a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Get Item Picture By Id + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.svg new file mode 100644 index 000000000..3793841f1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Item Picture By Id - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Item Picture By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.png new file mode 100644 index 000000000..d06312a72 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.puml new file mode 100644 index 000000000..0363e6c6b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.puml @@ -0,0 +1,21 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Items By Brand And Type Id") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.svg new file mode 100644 index 000000000..b884a1d2b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Sequence - Component level«external_system»External«component»Catalog ApiGet Items By Brand AndType IdChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.png new file mode 100644 index 000000000..e00bc7143 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.puml new file mode 100644 index 000000000..e16e69dd5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.svg new file mode 100644 index 000000000..7e26ff567 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.png new file mode 100644 index 000000000..49067e8af Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.puml new file mode 100644 index 000000000..3447e4361 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.svg new file mode 100644 index 000000000..d2f913831 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.png new file mode 100644 index 000000000..7602869fc Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.puml new file mode 100644 index 000000000..c896d1ed6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.puml @@ -0,0 +1,26 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Items By Brand And Type Id +group Get Items By Brand And Type Id +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder +group Change Uri Placeholder +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) +end +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.svg new file mode 100644 index 000000000..21f6f1286 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiGet Items By Brand And Type IdGet Items By Brand And Type IdChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.png new file mode 100644 index 000000000..f7406f054 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.puml new file mode 100644 index 000000000..b2b210eaf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Get Items By Brand And Type Id") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.svg new file mode 100644 index 000000000..352eac50b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Sequence - Container level«external_system»External«container»ApiGet Items By Brand AndType Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.png new file mode 100644 index 000000000..f204756f4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.puml new file mode 100644 index 000000000..41c719605 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.svg new file mode 100644 index 000000000..f6db40bf1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.png new file mode 100644 index 000000000..47acf5bf5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.puml new file mode 100644 index 000000000..9721fa518 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.svg new file mode 100644 index 000000000..b6e9ccad0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.png new file mode 100644 index 000000000..9648e322b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.puml new file mode 100644 index 000000000..b5199e7c2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Get Items By Brand And Type Id + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.svg new file mode 100644 index 000000000..410a8c444 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - Sequence - Container levelCatalog ApiExternalExternalApiApiGet Items By Brand And Type Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.png new file mode 100644 index 000000000..e4663be0f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.puml new file mode 100644 index 000000000..670552b14 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Get Items By Brand And Type Id") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.svg new file mode 100644 index 000000000..d96f93acf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Items By Brand AndType Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.png new file mode 100644 index 000000000..f68c57cc6 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.puml new file mode 100644 index 000000000..56773f1cf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.svg new file mode 100644 index 000000000..5ba371ad2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.png new file mode 100644 index 000000000..4e6e1b947 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.puml new file mode 100644 index 000000000..27d98df45 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.svg new file mode 100644 index 000000000..c3a9b6439 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.png new file mode 100644 index 000000000..9664c5538 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.puml new file mode 100644 index 000000000..0e08c2887 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Get Items By Brand And Type Id + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.svg new file mode 100644 index 000000000..7321a46fb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Items By Brand And Type Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.png new file mode 100644 index 000000000..6deee9ae0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.puml new file mode 100644 index 000000000..fcaf6bdb8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.puml @@ -0,0 +1,21 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Items By Brand Id") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.svg new file mode 100644 index 000000000..9b97336ba --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Sequence - Component level«external_system»External«component»Catalog ApiGet Items By Brand IdChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.png new file mode 100644 index 000000000..a040477c4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.puml new file mode 100644 index 000000000..fb337310e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.svg new file mode 100644 index 000000000..845ee4f0e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.png new file mode 100644 index 000000000..54c4e6a0c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.puml new file mode 100644 index 000000000..2dfcf3706 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.svg new file mode 100644 index 000000000..91bbe3d83 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.png new file mode 100644 index 000000000..c51c2d565 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.puml new file mode 100644 index 000000000..483450f33 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.puml @@ -0,0 +1,26 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Items By Brand Id +group Get Items By Brand Id +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder +group Change Uri Placeholder +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) +end +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.svg new file mode 100644 index 000000000..e8dea2d52 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiGet Items By Brand IdGet Items By Brand IdChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.png new file mode 100644 index 000000000..238be75ac Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.puml new file mode 100644 index 000000000..6d19577d4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Get Items By Brand Id") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.svg new file mode 100644 index 000000000..c3129da39 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Sequence - Container level«external_system»External«container»ApiGet Items By Brand Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.png new file mode 100644 index 000000000..b0da75eb0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.puml new file mode 100644 index 000000000..f5e470f6e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.svg new file mode 100644 index 000000000..bd5993205 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.png new file mode 100644 index 000000000..23b3be29c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.puml new file mode 100644 index 000000000..0f775cbe6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.svg new file mode 100644 index 000000000..89db78ea1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.png new file mode 100644 index 000000000..eb5460445 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.puml new file mode 100644 index 000000000..95fdbb81a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Get Items By Brand Id + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.svg new file mode 100644 index 000000000..a3fbf5af0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - Sequence - Container levelCatalog ApiExternalExternalApiApiGet Items By Brand Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.png new file mode 100644 index 000000000..1a5e784e1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.puml new file mode 100644 index 000000000..d77d107e9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Get Items By Brand Id") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.svg new file mode 100644 index 000000000..5ab023d77 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Items By Brand Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.png new file mode 100644 index 000000000..236060cc1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.puml new file mode 100644 index 000000000..3a87c7383 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.svg new file mode 100644 index 000000000..bbe9ce49c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.png new file mode 100644 index 000000000..99318c8a3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.puml new file mode 100644 index 000000000..408543685 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.svg new file mode 100644 index 000000000..997d9eb4c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.png new file mode 100644 index 000000000..8cbb97511 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.puml new file mode 100644 index 000000000..7858f8e4d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Get Items By Brand Id + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.svg new file mode 100644 index 000000000..6837fe355 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Brand Id - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Items By Brand Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.png new file mode 100644 index 000000000..5d3e18eb5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.puml new file mode 100644 index 000000000..15c046184 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.puml @@ -0,0 +1,26 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Items By Ids") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.svg new file mode 100644 index 000000000..74651a5b7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]Infrastructure[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextGet Items By IdsCatalog Items To ListAsyncChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.png new file mode 100644 index 000000000..f3a96259a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.puml new file mode 100644 index 000000000..1da2ffec6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.svg new file mode 100644 index 000000000..0fad96cab --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.png new file mode 100644 index 000000000..9979e10c0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.puml new file mode 100644 index 000000000..206abb03e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.svg new file mode 100644 index 000000000..0e257651a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.png new file mode 100644 index 000000000..2b767a074 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.puml new file mode 100644 index 000000000..15289e519 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.puml @@ -0,0 +1,32 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Items By Ids +group Get Items By Ids +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder +group Change Uri Placeholder +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) +end +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.svg new file mode 100644 index 000000000..987417d40 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextGet Items By IdsGet Items By IdsCatalog Items To List AsyncChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.png new file mode 100644 index 000000000..c28fba97a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.puml new file mode 100644 index 000000000..5fc5cb4af --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.puml @@ -0,0 +1,17 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Get Items By Ids") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.svg new file mode 100644 index 000000000..3b7947b2d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureGet Items By IdsCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.png new file mode 100644 index 000000000..917ec43f0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.puml new file mode 100644 index 000000000..409c5c3e6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.svg new file mode 100644 index 000000000..2d7076626 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.png new file mode 100644 index 000000000..ccf665136 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.puml new file mode 100644 index 000000000..32b8cf667 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.svg new file mode 100644 index 000000000..7faf738c9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.png new file mode 100644 index 000000000..d8d2eb372 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.puml new file mode 100644 index 000000000..650d1391d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Get Items By Ids +group Get Items By Ids +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.svg new file mode 100644 index 000000000..251e7b61c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureGet Items By IdsGet Items By IdsCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.png new file mode 100644 index 000000000..194a9d827 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.puml new file mode 100644 index 000000000..5b26b1e82 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Get Items By Ids") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.svg new file mode 100644 index 000000000..541b154a1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Items By Ids \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.png new file mode 100644 index 000000000..454d99316 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.puml new file mode 100644 index 000000000..a0821419a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.svg new file mode 100644 index 000000000..d0ef66e77 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.png new file mode 100644 index 000000000..9bdd5f8d8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.puml new file mode 100644 index 000000000..3269a9de5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.svg new file mode 100644 index 000000000..19b5935dc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.png new file mode 100644 index 000000000..67cd8bd55 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.puml new file mode 100644 index 000000000..ce9e7e72b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Get Items By Ids + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.svg new file mode 100644 index 000000000..5c9e09ab0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Ids - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Items By Ids \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.png new file mode 100644 index 000000000..87776b16a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.puml new file mode 100644 index 000000000..eb269ca2b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.puml @@ -0,0 +1,26 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Items By Name") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.svg new file mode 100644 index 000000000..f3784788f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]Infrastructure[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextGet Items By NameCatalog Items To ListAsyncChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.png new file mode 100644 index 000000000..5ac55d725 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.puml new file mode 100644 index 000000000..130500c10 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.svg new file mode 100644 index 000000000..55ee67bea --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.png new file mode 100644 index 000000000..383678c2b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.puml new file mode 100644 index 000000000..516066ffb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.svg new file mode 100644 index 000000000..129789a9a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.png new file mode 100644 index 000000000..67b2eba63 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.puml new file mode 100644 index 000000000..5ff7e232c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.puml @@ -0,0 +1,32 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Items By Name +group Get Items By Name +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder +group Change Uri Placeholder +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) +end +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.svg new file mode 100644 index 000000000..e47ddb9c4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextGet Items By NameGet Items By NameCatalog Items To List AsyncChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.png new file mode 100644 index 000000000..02d67b09a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.puml new file mode 100644 index 000000000..c4c605805 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.puml @@ -0,0 +1,17 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Get Items By Name") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.svg new file mode 100644 index 000000000..2b64dff48 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureGet Items By NameCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.png new file mode 100644 index 000000000..c2f7b4d74 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.puml new file mode 100644 index 000000000..3374c2b7a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.svg new file mode 100644 index 000000000..49920d185 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.png new file mode 100644 index 000000000..0defbc18b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.puml new file mode 100644 index 000000000..5f8a1c4ee --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.svg new file mode 100644 index 000000000..6f39dc563 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.png new file mode 100644 index 000000000..74322dce7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.puml new file mode 100644 index 000000000..b829c29cc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Get Items By Name +group Get Items By Name +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.svg new file mode 100644 index 000000000..c2b5c8cbd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureGet Items By NameGet Items By NameCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.png new file mode 100644 index 000000000..ff727c585 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.puml new file mode 100644 index 000000000..697f415e1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Get Items By Name") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.svg new file mode 100644 index 000000000..9b913666b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Items By Name \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.png new file mode 100644 index 000000000..a579f3d54 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.puml new file mode 100644 index 000000000..f7c33d9d6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.svg new file mode 100644 index 000000000..75635945e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.png new file mode 100644 index 000000000..b64242784 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.puml new file mode 100644 index 000000000..95ce4c951 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.svg new file mode 100644 index 000000000..43f64eddd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.png new file mode 100644 index 000000000..32b55885b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.puml new file mode 100644 index 000000000..f89683e65 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Get Items By Name + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.svg new file mode 100644 index 000000000..dcd47e9cd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Name - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Items By Name \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.png new file mode 100644 index 000000000..a1279f8e8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.puml new file mode 100644 index 000000000..67b06192e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.puml @@ -0,0 +1,37 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Items By Semantic Relevance") +alt !services.CatalogAI.IsEnabled +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Items By Name") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") +end +alt services.Logger.IsEnabled(LogLevel.Debug) +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") +else +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") +end +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.svg new file mode 100644 index 000000000..e0d20c03f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]Infrastructure[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextGet Items By SemanticRelevancealt[!services.CatalogAI.IsEnabled]Get Items By NameCatalog Items To ListAsyncChange Uri PlaceholderReturn (items)Return (TypedResults.Ok)alt[services.Logger.IsEnabled(LogLevel.Debug)]Catalog Items To ListAsyncCatalog Items To ListAsyncChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.png new file mode 100644 index 000000000..7733abb83 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.puml new file mode 100644 index 000000000..6f8b241e0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.svg new file mode 100644 index 000000000..c18941667 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.png new file mode 100644 index 000000000..b04f55a5d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.puml new file mode 100644 index 000000000..a47e3e4af --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.svg new file mode 100644 index 000000000..b5981a2a9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.png new file mode 100644 index 000000000..a8e06827a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.puml new file mode 100644 index 000000000..6bcb05d5b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.puml @@ -0,0 +1,47 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Items By Semantic Relevance +group Get Items By Semantic Relevance +alt !services.CatalogAI.IsEnabled +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Items By Name +group Get Items By Name +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder +group Change Uri Placeholder +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) +end +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) +end +end +alt services.Logger.IsEnabled(LogLevel.Debug) +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async +else +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async +end +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder +group Change Uri Placeholder +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) +end +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.svg new file mode 100644 index 000000000..e1bc902ed --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextGet Items By Semantic RelevanceGet Items By Semantic Relevancealt[!services.CatalogAI.IsEnabled]Get Items By NameGet Items By NameCatalog Items To List AsyncChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok)alt[services.Logger.IsEnabled(LogLevel.Debug)]Catalog Items To List AsyncCatalog Items To List AsyncChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.png new file mode 100644 index 000000000..3efb7246c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.puml new file mode 100644 index 000000000..53d5cf460 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.puml @@ -0,0 +1,19 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Get Items By Semantic Relevance") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.svg new file mode 100644 index 000000000..d16869ac2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureGet Items By SemanticRelevanceCatalog Items To ListAsyncCatalog Items To ListAsyncCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.png new file mode 100644 index 000000000..8468ce020 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.puml new file mode 100644 index 000000000..fb40312cf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.svg new file mode 100644 index 000000000..021660cf4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.png new file mode 100644 index 000000000..98507d01b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.puml new file mode 100644 index 000000000..c5c0332b8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.svg new file mode 100644 index 000000000..17664518b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.png new file mode 100644 index 000000000..c6c9beed4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.puml new file mode 100644 index 000000000..1ac2c6689 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.puml @@ -0,0 +1,21 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Get Items By Semantic Relevance +group Get Items By Semantic Relevance +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.svg new file mode 100644 index 000000000..c84ff0dc9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureGet Items By Semantic RelevanceGet Items By Semantic RelevanceCatalog Items To List AsyncCatalog Items To List AsyncCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.png new file mode 100644 index 000000000..2d0ec65a1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.puml new file mode 100644 index 000000000..84715fd43 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Get Items By Semantic Relevance") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.svg new file mode 100644 index 000000000..54d3afb18 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Items By SemanticRelevance \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.png new file mode 100644 index 000000000..f1ef7fb31 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.puml new file mode 100644 index 000000000..27f78ce8e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.svg new file mode 100644 index 000000000..0c5d79eaf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.png new file mode 100644 index 000000000..f6495ef96 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.puml new file mode 100644 index 000000000..9cebf98fa --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.svg new file mode 100644 index 000000000..1569b36a0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.png new file mode 100644 index 000000000..bf634445e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.puml new file mode 100644 index 000000000..0499e254b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Get Items By Semantic Relevance + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.svg new file mode 100644 index 000000000..ffc96e140 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Items By Semantic Relevance \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.png new file mode 100644 index 000000000..0dd1bc4a2 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.puml new file mode 100644 index 000000000..ff4c1e5a4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.puml @@ -0,0 +1,19 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Map Catalog Api") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (app)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.svg new file mode 100644 index 000000000..89183420b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Sequence - Component level«external_system»External«component»Catalog ApiMap Catalog ApiReturn (app) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.png new file mode 100644 index 000000000..8c14fe11d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.puml new file mode 100644 index 000000000..14f814b43 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.svg new file mode 100644 index 000000000..7320cf2ad --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.png new file mode 100644 index 000000000..797b865b4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.puml new file mode 100644 index 000000000..913f484d5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.svg new file mode 100644 index 000000000..24021f982 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.png new file mode 100644 index 000000000..2c92beecd Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.puml new file mode 100644 index 000000000..99f468254 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.puml @@ -0,0 +1,22 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Map Catalog Api +group Map Catalog Api +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (app) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.svg new file mode 100644 index 000000000..0af5d9e52 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiMap Catalog ApiMap Catalog ApiReturn (app) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.png new file mode 100644 index 000000000..196db97a1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.puml new file mode 100644 index 000000000..770bf5cb8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Map Catalog Api") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.svg new file mode 100644 index 000000000..65b0a7e6b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Sequence - Container level«external_system»External«container»ApiMap Catalog Api \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.png new file mode 100644 index 000000000..700c4dfa7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.puml new file mode 100644 index 000000000..4653afabe --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.svg new file mode 100644 index 000000000..db0459b1f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.png new file mode 100644 index 000000000..2e74f79fc Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.puml new file mode 100644 index 000000000..0ba5c2166 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.svg new file mode 100644 index 000000000..1e90fda9f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.png new file mode 100644 index 000000000..0fddac185 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.puml new file mode 100644 index 000000000..819abc2b5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Map Catalog Api + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.svg new file mode 100644 index 000000000..15d0138ca --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - Sequence - Container levelCatalog ApiExternalExternalApiApiMap Catalog Api \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.png new file mode 100644 index 000000000..05330ae79 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.puml new file mode 100644 index 000000000..054f174f5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Map Catalog Api") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.svg new file mode 100644 index 000000000..1682fa713 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Sequence - Context level«external_system»External«system»Catalog ApiMap Catalog Api \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.png new file mode 100644 index 000000000..20ec19777 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.puml new file mode 100644 index 000000000..c0e54fb46 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.svg new file mode 100644 index 000000000..2e4a3499c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.png new file mode 100644 index 000000000..727cf154b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.puml new file mode 100644 index 000000000..4fe72f918 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.svg new file mode 100644 index 000000000..1b2b467d9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.png new file mode 100644 index 000000000..1f525539b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.puml new file mode 100644 index 000000000..035d4d186 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Map Catalog Api + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.svg new file mode 100644 index 000000000..473bbaaf0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Map Catalog Api - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiMap Catalog Api \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.png new file mode 100644 index 000000000..21fe452c1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.puml new file mode 100644 index 000000000..13ba2f4d1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +Boundary_End() + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Update Item") +alt catalogItem == null +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.NotFound)") +end +alt priceEntry.IsModified +else +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Save Changes Async") +end +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Created)") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.svg new file mode 100644 index 000000000..f8d9c10e4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Api[Container]Infrastructure[Container]DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextUpdate Itemalt[catalogItem == null]Return(TypedResults.NotFound)alt[priceEntry.IsModified]Save Changes AsyncReturn(TypedResults.Created) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.png new file mode 100644 index 000000000..f1edfce5c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.puml new file mode 100644 index 000000000..8bbbada47 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.svg new file mode 100644 index 000000000..20dd459e8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.png new file mode 100644 index 000000000..e908b6e9c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.puml new file mode 100644 index 000000000..8a71369b0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Save Changes Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.svg new file mode 100644 index 000000000..1313d0774 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextSave Changes AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.png new file mode 100644 index 000000000..21f674e12 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.puml new file mode 100644 index 000000000..8d85eaf54 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.puml @@ -0,0 +1,34 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Api" #White + participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi +end box + + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Update Item +group Update Item +alt catalogItem == null +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.NotFound) +end +alt priceEntry.IsModified +else +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Save Changes Async +end +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Created) +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.svg new file mode 100644 index 000000000..431c97c6b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextUpdate ItemUpdate Itemalt[catalogItem == null]Return (TypedResults.NotFound)alt[priceEntry.IsModified]Save Changes AsyncReturn (TypedResults.Created) \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.png new file mode 100644 index 000000000..10dc8aee2 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.puml new file mode 100644 index 000000000..e1ff31488 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.puml @@ -0,0 +1,17 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Update Item") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Save Changes Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.svg new file mode 100644 index 000000000..ce8168383 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureUpdate ItemSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.png new file mode 100644 index 000000000..eb0765e92 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.puml new file mode 100644 index 000000000..103d2ff32 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.svg new file mode 100644 index 000000000..6c3116240 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.puml new file mode 100644 index 000000000..c6895ed9c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Save Changes Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.svg new file mode 100644 index 000000000..6e96d9888 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 - Container levelCatalog Api[System]ApiInfrastructureSave Changes AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.png new file mode 100644 index 000000000..4da9b11c5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.puml new file mode 100644 index 000000000..aea20e68d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Api" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api : Update Item +group Update Item +DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Save Changes Async +end + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.svg new file mode 100644 index 000000000..473e80142 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureUpdate ItemUpdate ItemSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.png new file mode 100644 index 000000000..566352aa0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.puml new file mode 100644 index 000000000..3071c3f7b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Update Item") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.svg new file mode 100644 index 000000000..d2012e04d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 Sequence - Context level«external_system»External«system»Catalog ApiUpdate Item \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.png new file mode 100644 index 000000000..168c03b1d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.puml new file mode 100644 index 000000000..b8997160f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.svg new file mode 100644 index 000000000..50c318781 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.png new file mode 100644 index 000000000..841f99fb9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.puml new file mode 100644 index 000000000..eb1840fee --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.svg new file mode 100644 index 000000000..744280f3e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.png new file mode 100644 index 000000000..705e039ec Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.puml new file mode 100644 index 000000000..1da65efab --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Update Item + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.svg new file mode 100644 index 000000000..f86379966 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - Catalog Api - Update Item - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiUpdate Item \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.png new file mode 100644 index 000000000..886761172 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.puml new file mode 100644 index 000000000..7b7e19d6f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.svg new file mode 100644 index 000000000..e19e3e197 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4.png new file mode 100644 index 000000000..cea82d14f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4.puml new file mode 100644 index 000000000..94d9a5a73 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4.puml @@ -0,0 +1,29 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Api - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4.svg new file mode 100644 index 000000000..f826dd67c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Api/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Api - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.png new file mode 100644 index 000000000..2b56edc44 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.puml new file mode 100644 index 000000000..d5d15be20 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.svg new file mode 100644 index 000000000..beeaa3164 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.png new file mode 100644 index 000000000..f946393ea Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.puml new file mode 100644 index 000000000..b7d1dcd1f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.svg new file mode 100644 index 000000000..fc93e4a24 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.png new file mode 100644 index 000000000..680e594ba Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.puml new file mode 100644 index 000000000..e38e5c885 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.svg new file mode 100644 index 000000000..c468852c1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.png new file mode 100644 index 000000000..c16374053 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.puml new file mode 100644 index 000000000..524068410 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.svg new file mode 100644 index 000000000..af829a849 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.png new file mode 100644 index 000000000..2a82a0348 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.puml new file mode 100644 index 000000000..77eab660a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands Add") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.svg new file mode 100644 index 000000000..26be5afcc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.png new file mode 100644 index 000000000..11a380aba Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.puml new file mode 100644 index 000000000..3177162e0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.svg new file mode 100644 index 000000000..93a43d6d2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.png new file mode 100644 index 000000000..91d412fe3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.puml new file mode 100644 index 000000000..0e557492a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.svg new file mode 100644 index 000000000..90ec21d61 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.png new file mode 100644 index 000000000..f57d225e3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.puml new file mode 100644 index 000000000..7f10ea376 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands Add + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.svg new file mode 100644 index 000000000..9b4a9be45 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.png new file mode 100644 index 000000000..d1f50877b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.puml new file mode 100644 index 000000000..f4b2bacc0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands Add") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.svg new file mode 100644 index 000000000..db91b08c9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.png new file mode 100644 index 000000000..feb2108ab Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.puml new file mode 100644 index 000000000..eefb4da22 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.svg new file mode 100644 index 000000000..50488307f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.png new file mode 100644 index 000000000..c0ff81e70 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.puml new file mode 100644 index 000000000..f15d5a871 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.svg new file mode 100644 index 000000000..c480547aa --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.png new file mode 100644 index 000000000..810fdc8cd Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.puml new file mode 100644 index 000000000..b7f586639 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands Add + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.svg new file mode 100644 index 000000000..4d56b5467 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.png new file mode 100644 index 000000000..c99edaead Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.puml new file mode 100644 index 000000000..9fe7488bb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Brands Add") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.svg new file mode 100644 index 000000000..442e72726 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.png new file mode 100644 index 000000000..b2594c9e1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.puml new file mode 100644 index 000000000..ecb3ee480 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.svg new file mode 100644 index 000000000..49ff3cdd3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.png new file mode 100644 index 000000000..834d7fb47 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.puml new file mode 100644 index 000000000..1d46e6904 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.svg new file mode 100644 index 000000000..469914826 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.png new file mode 100644 index 000000000..d03b1cc15 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.puml new file mode 100644 index 000000000..6f09cc8ac --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Brands Add + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.svg new file mode 100644 index 000000000..98c5cf411 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.png new file mode 100644 index 000000000..7dbc6039f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..a1babcb6e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands Any Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..355cd3a6d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.png new file mode 100644 index 000000000..c4a126918 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.puml new file mode 100644 index 000000000..33638ceb3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.svg new file mode 100644 index 000000000..2fcfed6d0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.png new file mode 100644 index 000000000..7d0eecba5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.puml new file mode 100644 index 000000000..5e4c68bc1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.svg new file mode 100644 index 000000000..68482c5ff --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.png new file mode 100644 index 000000000..d4f3bcf49 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.puml new file mode 100644 index 000000000..692ed4ab7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands Any Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.svg new file mode 100644 index 000000000..dffb14f11 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.png new file mode 100644 index 000000000..ec85494b1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..2ea7e387d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands Any Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..4b2cc19c5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.png new file mode 100644 index 000000000..f4c20bada Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.puml new file mode 100644 index 000000000..3efb346d5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.svg new file mode 100644 index 000000000..a84eec983 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.png new file mode 100644 index 000000000..b859c9dc4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.puml new file mode 100644 index 000000000..93b674caa --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.svg new file mode 100644 index 000000000..af85c8fa4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.png new file mode 100644 index 000000000..e4bb46721 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.puml new file mode 100644 index 000000000..3888a200b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands Any Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.svg new file mode 100644 index 000000000..6e78bd675 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.png new file mode 100644 index 000000000..c44b12f1a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..8130a3777 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Brands Any Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..3cee1a075 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.png new file mode 100644 index 000000000..83c28e456 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.puml new file mode 100644 index 000000000..82be754a5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.svg new file mode 100644 index 000000000..fdb2b6455 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.png new file mode 100644 index 000000000..45da1c00e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.puml new file mode 100644 index 000000000..d3abcdd74 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.svg new file mode 100644 index 000000000..7380ea565 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.png new file mode 100644 index 000000000..7073b0527 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.puml new file mode 100644 index 000000000..bd27c114b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Brands Any Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.svg new file mode 100644 index 000000000..003d2988f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.png new file mode 100644 index 000000000..db18aa122 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.puml new file mode 100644 index 000000000..c74b4c189 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands As Queryable") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.svg new file mode 100644 index 000000000..9b4a1bbb3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.png new file mode 100644 index 000000000..9eaa39f6e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.puml new file mode 100644 index 000000000..96463dc2d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.svg new file mode 100644 index 000000000..30347603c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.png new file mode 100644 index 000000000..4cf12a640 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.puml new file mode 100644 index 000000000..3dc226456 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.svg new file mode 100644 index 000000000..523a85ec9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.png new file mode 100644 index 000000000..444d6cf3f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.puml new file mode 100644 index 000000000..5bf51304d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands As Queryable + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.svg new file mode 100644 index 000000000..29bcd87d0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.png new file mode 100644 index 000000000..2853f9f95 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.puml new file mode 100644 index 000000000..5026f4f43 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands As Queryable") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.svg new file mode 100644 index 000000000..9898ba3b8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.png new file mode 100644 index 000000000..a511c108b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.puml new file mode 100644 index 000000000..4344bba36 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.svg new file mode 100644 index 000000000..a4591fc95 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.png new file mode 100644 index 000000000..b579b59ea Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.puml new file mode 100644 index 000000000..6b7d5c84d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.svg new file mode 100644 index 000000000..9bd96a917 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.png new file mode 100644 index 000000000..5e5e69bdd Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.puml new file mode 100644 index 000000000..61e00a8df --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands As Queryable + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.svg new file mode 100644 index 000000000..294d0c9cd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.png new file mode 100644 index 000000000..d2e3e3a54 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.puml new file mode 100644 index 000000000..23dbbf5e1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Brands As Queryable") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.svg new file mode 100644 index 000000000..1f1fa3f38 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.png new file mode 100644 index 000000000..37ca3f9b0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.puml new file mode 100644 index 000000000..df274ca87 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.svg new file mode 100644 index 000000000..51bba14af --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.png new file mode 100644 index 000000000..41868fef1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.puml new file mode 100644 index 000000000..f498cfd84 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.svg new file mode 100644 index 000000000..c76fb1299 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.png new file mode 100644 index 000000000..fe33929ff Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.puml new file mode 100644 index 000000000..57f468199 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Brands As Queryable + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.svg new file mode 100644 index 000000000..8cef407c5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.png new file mode 100644 index 000000000..a6e6738d4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..8ccd8e1ca --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands Find Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..78990e7a5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands FindAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.png new file mode 100644 index 000000000..7878f48de Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.puml new file mode 100644 index 000000000..abc090ff7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.svg new file mode 100644 index 000000000..17d041034 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.puml new file mode 100644 index 000000000..3da79cfa0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.svg new file mode 100644 index 000000000..ee3d43c45 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.png new file mode 100644 index 000000000..054b5aac9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.puml new file mode 100644 index 000000000..75525e0a2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands Find Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.svg new file mode 100644 index 000000000..57fbc894b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.png new file mode 100644 index 000000000..29ab8f2de Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..eeabfaa8c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands Find Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..3a84c0b2a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands FindAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.png new file mode 100644 index 000000000..5d78e03f9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.puml new file mode 100644 index 000000000..ba94a96b4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.svg new file mode 100644 index 000000000..19b5e3f16 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.png new file mode 100644 index 000000000..3689737bf Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.puml new file mode 100644 index 000000000..f54f730f4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.svg new file mode 100644 index 000000000..4d9dfc9b8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.png new file mode 100644 index 000000000..6f009bb9a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.puml new file mode 100644 index 000000000..c63b3a2a5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands Find Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.svg new file mode 100644 index 000000000..75df41430 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.png new file mode 100644 index 000000000..7419acec4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..cdd450551 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Brands Find Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..4454d25bc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands FindAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.png new file mode 100644 index 000000000..c110d8567 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.puml new file mode 100644 index 000000000..a0c21e769 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.svg new file mode 100644 index 000000000..95da4691a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.png new file mode 100644 index 000000000..edc1439f3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.puml new file mode 100644 index 000000000..8489c1ab5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.svg new file mode 100644 index 000000000..55e8ceb57 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.png new file mode 100644 index 000000000..75b164224 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.puml new file mode 100644 index 000000000..338dde350 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Brands Find Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.svg new file mode 100644 index 000000000..aa2bbb017 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.png new file mode 100644 index 000000000..0e22261c4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..8f3d9c0dc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands First Or Default Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..e5418641a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.png new file mode 100644 index 000000000..3db0d92ea Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.puml new file mode 100644 index 000000000..c52be7d5f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.svg new file mode 100644 index 000000000..7eab2cb8f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.png new file mode 100644 index 000000000..0380d1776 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.puml new file mode 100644 index 000000000..cb4ee2719 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.svg new file mode 100644 index 000000000..0ae572c53 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.png new file mode 100644 index 000000000..0ceef2fc1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.puml new file mode 100644 index 000000000..95a812472 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands First Or Default Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.svg new file mode 100644 index 000000000..237ea4f70 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.png new file mode 100644 index 000000000..f33b0d40a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..a774822d3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands First Or Default Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..81d51b2e1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.png new file mode 100644 index 000000000..7b6b26801 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.puml new file mode 100644 index 000000000..7c10365c2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.svg new file mode 100644 index 000000000..4cbae6720 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.png new file mode 100644 index 000000000..7f8340e62 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.puml new file mode 100644 index 000000000..56953a210 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.svg new file mode 100644 index 000000000..1584dccbd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.png new file mode 100644 index 000000000..04072e20b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.puml new file mode 100644 index 000000000..5eefe4666 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands First Or Default Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.svg new file mode 100644 index 000000000..44aadaa8b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.png new file mode 100644 index 000000000..3452fead1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..54ff08fd6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Brands First Or Default Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..d63d93a58 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.png new file mode 100644 index 000000000..4d1e76ded Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.puml new file mode 100644 index 000000000..cdd2cc2d4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.svg new file mode 100644 index 000000000..fc5b184c1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.png new file mode 100644 index 000000000..d8e40e239 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.puml new file mode 100644 index 000000000..c15501f49 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.svg new file mode 100644 index 000000000..2562459e1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.png new file mode 100644 index 000000000..19fb2393d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.puml new file mode 100644 index 000000000..09f42c784 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Brands First Or Default Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.svg new file mode 100644 index 000000000..eb9fa94b2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.png new file mode 100644 index 000000000..39af36885 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.puml new file mode 100644 index 000000000..36dcd628f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands Remove") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.svg new file mode 100644 index 000000000..0cf6b8b63 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.png new file mode 100644 index 000000000..743d8616f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.puml new file mode 100644 index 000000000..d18679e28 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.svg new file mode 100644 index 000000000..0ffc293fc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.png new file mode 100644 index 000000000..556fb6cb1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.puml new file mode 100644 index 000000000..6a6d54b08 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.svg new file mode 100644 index 000000000..4b7b0cdbe --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.png new file mode 100644 index 000000000..7817fc06f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.puml new file mode 100644 index 000000000..95f494900 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands Remove + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.svg new file mode 100644 index 000000000..8f11dbe18 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.png new file mode 100644 index 000000000..71aa660e1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.puml new file mode 100644 index 000000000..898aa7732 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands Remove") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.svg new file mode 100644 index 000000000..730ef3e8e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.png new file mode 100644 index 000000000..56f442f52 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.puml new file mode 100644 index 000000000..4ea7447e0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.svg new file mode 100644 index 000000000..8f97366ed --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.png new file mode 100644 index 000000000..3c9a5688e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.puml new file mode 100644 index 000000000..504a9828f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.svg new file mode 100644 index 000000000..f4dde106a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.png new file mode 100644 index 000000000..447f1629b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.puml new file mode 100644 index 000000000..0d96f8d6a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands Remove + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.svg new file mode 100644 index 000000000..753fa3100 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.png new file mode 100644 index 000000000..5f14ca802 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.puml new file mode 100644 index 000000000..d07f34803 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Brands Remove") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.svg new file mode 100644 index 000000000..1652f8b26 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.png new file mode 100644 index 000000000..59bd1288a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.puml new file mode 100644 index 000000000..68d365823 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.svg new file mode 100644 index 000000000..93f671396 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.png new file mode 100644 index 000000000..1c15d5de3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.puml new file mode 100644 index 000000000..64be99860 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.svg new file mode 100644 index 000000000..656930ef8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.png new file mode 100644 index 000000000..835bee81d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.puml new file mode 100644 index 000000000..598e5ec84 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Brands Remove + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.svg new file mode 100644 index 000000000..2a2ec8b1f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.png new file mode 100644 index 000000000..d1a2895d6 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.puml new file mode 100644 index 000000000..37e70ce2c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands Single Or Default") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.svg new file mode 100644 index 000000000..62beb3199 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.png new file mode 100644 index 000000000..0904d6106 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.puml new file mode 100644 index 000000000..1c5156146 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.svg new file mode 100644 index 000000000..b431037b6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.png new file mode 100644 index 000000000..d8553f51c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.puml new file mode 100644 index 000000000..84e7e447e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.svg new file mode 100644 index 000000000..548d23acd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.png new file mode 100644 index 000000000..6c1524ad5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.puml new file mode 100644 index 000000000..978dd48be --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands Single Or Default + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.svg new file mode 100644 index 000000000..13a8c502f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.png new file mode 100644 index 000000000..29b7f6781 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.puml new file mode 100644 index 000000000..f15691cd6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands Single Or Default") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.svg new file mode 100644 index 000000000..6dd4a9c59 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.png new file mode 100644 index 000000000..3385ca2d7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.puml new file mode 100644 index 000000000..e2a0f2db0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.svg new file mode 100644 index 000000000..fa871a3e9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.png new file mode 100644 index 000000000..32e5f1639 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.puml new file mode 100644 index 000000000..209855e8c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.svg new file mode 100644 index 000000000..0e1847e30 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.png new file mode 100644 index 000000000..f2ef83cde Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.puml new file mode 100644 index 000000000..16e62235a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands Single Or Default + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.svg new file mode 100644 index 000000000..04be116fe --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.png new file mode 100644 index 000000000..b42d872fb Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.puml new file mode 100644 index 000000000..4834e119b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Brands Single Or Default") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.svg new file mode 100644 index 000000000..c791ecd9a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.png new file mode 100644 index 000000000..ed8fd0d46 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.puml new file mode 100644 index 000000000..9533c8bd7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.svg new file mode 100644 index 000000000..c938e006d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.png new file mode 100644 index 000000000..e3b7d2430 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.puml new file mode 100644 index 000000000..d73420298 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.svg new file mode 100644 index 000000000..13b018fef --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.png new file mode 100644 index 000000000..5d9900ca6 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.puml new file mode 100644 index 000000000..e670994c5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Brands Single Or Default + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.svg new file mode 100644 index 000000000..bb14bd98c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.png new file mode 100644 index 000000000..3d2bc04cf Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..26b6edef5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands To List Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..fd5878b0b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.png new file mode 100644 index 000000000..8cae2e18e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.puml new file mode 100644 index 000000000..ce1956032 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.svg new file mode 100644 index 000000000..9a25a6032 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.png new file mode 100644 index 000000000..07598435b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.puml new file mode 100644 index 000000000..32e748bd9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.svg new file mode 100644 index 000000000..dea48d14d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.png new file mode 100644 index 000000000..5605223b6 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.puml new file mode 100644 index 000000000..db5a7b6d5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands To List Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.svg new file mode 100644 index 000000000..636e90f48 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.png new file mode 100644 index 000000000..f5b26955e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..7ea40a087 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands To List Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..d1897b45d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.png new file mode 100644 index 000000000..885e213ff Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.puml new file mode 100644 index 000000000..5210265bb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.svg new file mode 100644 index 000000000..18d222862 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.png new file mode 100644 index 000000000..437b9176a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.puml new file mode 100644 index 000000000..7c515da44 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.svg new file mode 100644 index 000000000..5305c0939 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.png new file mode 100644 index 000000000..ca4aa6eb8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.puml new file mode 100644 index 000000000..27eceb1b1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands To List Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.svg new file mode 100644 index 000000000..58ec02426 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.png new file mode 100644 index 000000000..279094040 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..ada66608c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Brands To List Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..b04c1d57a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.png new file mode 100644 index 000000000..b33737f64 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.puml new file mode 100644 index 000000000..d38465710 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.svg new file mode 100644 index 000000000..f2c6d18ac --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.png new file mode 100644 index 000000000..c7b5506b7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.puml new file mode 100644 index 000000000..20611e359 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.svg new file mode 100644 index 000000000..6dcaf7db1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.puml new file mode 100644 index 000000000..1be1f77a5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Brands To List Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.svg new file mode 100644 index 000000000..3d3d1cc2c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.png new file mode 100644 index 000000000..f49aca4da Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.puml new file mode 100644 index 000000000..0657dc2f8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.svg new file mode 100644 index 000000000..dce76c7e9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.png new file mode 100644 index 000000000..919fbcf09 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.puml new file mode 100644 index 000000000..6e89a58b1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.svg new file mode 100644 index 000000000..13e03b4c0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.png new file mode 100644 index 000000000..0105fdfc9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.puml new file mode 100644 index 000000000..7a90ff561 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.svg new file mode 100644 index 000000000..6dd37d4e3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.png new file mode 100644 index 000000000..69ea49a44 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.puml new file mode 100644 index 000000000..dfe75c46b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Add + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.svg new file mode 100644 index 000000000..da484ac90 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.png new file mode 100644 index 000000000..4823d5fae Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.puml new file mode 100644 index 000000000..5abf675e4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.svg new file mode 100644 index 000000000..8ba2a6c1f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.png new file mode 100644 index 000000000..f6c158c2a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.puml new file mode 100644 index 000000000..a327a712b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.svg new file mode 100644 index 000000000..b6710b422 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.png new file mode 100644 index 000000000..63aa3e4e6 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.puml new file mode 100644 index 000000000..db6137675 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.svg new file mode 100644 index 000000000..26fbe6f3c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.png new file mode 100644 index 000000000..2111bfcc0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.puml new file mode 100644 index 000000000..291843a2b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Add + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.svg new file mode 100644 index 000000000..035cb5031 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.png new file mode 100644 index 000000000..8de227340 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.puml new file mode 100644 index 000000000..f0fb4e394 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Items Add") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.svg new file mode 100644 index 000000000..2c7994fd2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.png new file mode 100644 index 000000000..4f648a4ab Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.puml new file mode 100644 index 000000000..db3dc02b1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.svg new file mode 100644 index 000000000..d9ab6953f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.png new file mode 100644 index 000000000..e4d229548 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.puml new file mode 100644 index 000000000..f7e6172e0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.svg new file mode 100644 index 000000000..50fcaa4d0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.png new file mode 100644 index 000000000..e55cfee89 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.puml new file mode 100644 index 000000000..7410c3d42 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Items Add + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.svg new file mode 100644 index 000000000..d6c408262 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.png new file mode 100644 index 000000000..3d1282641 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..4af5ad312 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Any Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..d0b958aae --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.png new file mode 100644 index 000000000..d46cb4f9a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.puml new file mode 100644 index 000000000..985d44775 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.svg new file mode 100644 index 000000000..e19f46371 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.png new file mode 100644 index 000000000..8e6c38f57 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.puml new file mode 100644 index 000000000..73673b940 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.svg new file mode 100644 index 000000000..18b28b06f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.png new file mode 100644 index 000000000..5c6c1519e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.puml new file mode 100644 index 000000000..cfd50ba64 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Any Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.svg new file mode 100644 index 000000000..a1a8f973d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.png new file mode 100644 index 000000000..65a103644 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..69339bd33 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Any Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..ab3c02728 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.png new file mode 100644 index 000000000..219e056eb Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.puml new file mode 100644 index 000000000..5ae9897af --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.svg new file mode 100644 index 000000000..ab7582cf0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.png new file mode 100644 index 000000000..5be053710 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.puml new file mode 100644 index 000000000..d14e7b6ea --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.svg new file mode 100644 index 000000000..52527e27b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.png new file mode 100644 index 000000000..6d8f1cc21 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.puml new file mode 100644 index 000000000..2cc6ff019 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Any Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.svg new file mode 100644 index 000000000..3da72716d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.png new file mode 100644 index 000000000..84d4659fe Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..6cad2d474 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Items Any Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..55e56da4c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.png new file mode 100644 index 000000000..fb2012d59 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.puml new file mode 100644 index 000000000..35d63b652 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.svg new file mode 100644 index 000000000..598f26b2b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.png new file mode 100644 index 000000000..d1ce971c3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.puml new file mode 100644 index 000000000..a0c7209d2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.svg new file mode 100644 index 000000000..efd1d6bbe --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.png new file mode 100644 index 000000000..2059dc39a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.puml new file mode 100644 index 000000000..5ee044faf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Items Any Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.svg new file mode 100644 index 000000000..c8e29bcde --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.png new file mode 100644 index 000000000..6f771f844 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.puml new file mode 100644 index 000000000..9a6d89125 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items As Queryable") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.svg new file mode 100644 index 000000000..b6ae1a080 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.png new file mode 100644 index 000000000..1f5066766 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.puml new file mode 100644 index 000000000..03c8c0cd4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.svg new file mode 100644 index 000000000..5da381b90 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.png new file mode 100644 index 000000000..4b273653b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.puml new file mode 100644 index 000000000..bf5cf614f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.svg new file mode 100644 index 000000000..99327caab --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.png new file mode 100644 index 000000000..5f86f6b8d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.puml new file mode 100644 index 000000000..aa31d76b3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items As Queryable + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.svg new file mode 100644 index 000000000..7a801b193 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.png new file mode 100644 index 000000000..a5c064b7c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.puml new file mode 100644 index 000000000..13868ca5f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items As Queryable") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.svg new file mode 100644 index 000000000..9443272e6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.png new file mode 100644 index 000000000..21da12aba Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.puml new file mode 100644 index 000000000..ebf72e6e4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.svg new file mode 100644 index 000000000..71b2ad8de --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.png new file mode 100644 index 000000000..d0224a79f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.puml new file mode 100644 index 000000000..05399687a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.svg new file mode 100644 index 000000000..a0b281e76 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.png new file mode 100644 index 000000000..e63699196 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.puml new file mode 100644 index 000000000..a30d5992d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items As Queryable + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.svg new file mode 100644 index 000000000..301f81b17 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.png new file mode 100644 index 000000000..3b28254d9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.puml new file mode 100644 index 000000000..01b276e33 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Items As Queryable") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.svg new file mode 100644 index 000000000..ce816bf42 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.png new file mode 100644 index 000000000..c0e4386ad Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.puml new file mode 100644 index 000000000..25469d4bb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.svg new file mode 100644 index 000000000..ea8be90ee --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.png new file mode 100644 index 000000000..1abf7ee30 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.puml new file mode 100644 index 000000000..60e1d709d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.svg new file mode 100644 index 000000000..ec99be926 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.png new file mode 100644 index 000000000..7401489af Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.puml new file mode 100644 index 000000000..73d028514 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Items As Queryable + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.svg new file mode 100644 index 000000000..35b846439 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.png new file mode 100644 index 000000000..0a124c67d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..a618c3863 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Find Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..45f9aac0f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.png new file mode 100644 index 000000000..181e8d8d2 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.puml new file mode 100644 index 000000000..1b3721750 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.svg new file mode 100644 index 000000000..20e170956 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.png new file mode 100644 index 000000000..a7d3bd07d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.puml new file mode 100644 index 000000000..69c70bf85 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.svg new file mode 100644 index 000000000..c982056e8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.png new file mode 100644 index 000000000..1f9aeb6ac Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.puml new file mode 100644 index 000000000..4471f18fd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Find Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.svg new file mode 100644 index 000000000..a25dbf14e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.png new file mode 100644 index 000000000..9d9dad3cc Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..d5e89ad3b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Find Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..e4802e675 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.png new file mode 100644 index 000000000..385d8cab7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.puml new file mode 100644 index 000000000..e7e464f49 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.svg new file mode 100644 index 000000000..8c40ca770 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.png new file mode 100644 index 000000000..506d52da1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.puml new file mode 100644 index 000000000..275a9eadd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.svg new file mode 100644 index 000000000..da56fb28f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.png new file mode 100644 index 000000000..6b97e029d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.puml new file mode 100644 index 000000000..6ecdc28bc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Find Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.svg new file mode 100644 index 000000000..1f12e4461 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.png new file mode 100644 index 000000000..9524db006 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..9c023473b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Items Find Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..beed26915 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.png new file mode 100644 index 000000000..de53fcefd Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.puml new file mode 100644 index 000000000..029ca9617 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.svg new file mode 100644 index 000000000..9d84ae5d5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.png new file mode 100644 index 000000000..2cbf45e74 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.puml new file mode 100644 index 000000000..0f17b4398 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.svg new file mode 100644 index 000000000..52988fc18 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.png new file mode 100644 index 000000000..30dc80482 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.puml new file mode 100644 index 000000000..cc3c7bd34 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Items Find Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.svg new file mode 100644 index 000000000..6ca46a916 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.png new file mode 100644 index 000000000..9ec95885e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..70ae0df4b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items First Or Default Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..b3b34420b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.png new file mode 100644 index 000000000..d96e49097 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.puml new file mode 100644 index 000000000..bc9b16a66 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.svg new file mode 100644 index 000000000..f617d1d59 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.png new file mode 100644 index 000000000..eeb95c0bb Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.puml new file mode 100644 index 000000000..00932b235 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.svg new file mode 100644 index 000000000..257fe520b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.png new file mode 100644 index 000000000..c0916db43 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.puml new file mode 100644 index 000000000..e7752d093 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items First Or Default Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.svg new file mode 100644 index 000000000..73fa4f5a2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.png new file mode 100644 index 000000000..948335a82 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..e3dba72c3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items First Or Default Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..4fef2f06d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.png new file mode 100644 index 000000000..5b76dc45e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.puml new file mode 100644 index 000000000..c35d1bae2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.svg new file mode 100644 index 000000000..1000ed444 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.png new file mode 100644 index 000000000..1dfb7ef23 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.puml new file mode 100644 index 000000000..32da168d3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.svg new file mode 100644 index 000000000..4fd148f96 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.png new file mode 100644 index 000000000..ec5b94ba0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.puml new file mode 100644 index 000000000..04574b9a2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items First Or Default Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.svg new file mode 100644 index 000000000..3211cd8fe --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.png new file mode 100644 index 000000000..a299a5087 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..f243ca8de --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Items First Or Default Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..1a3a933fb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.png new file mode 100644 index 000000000..206ba29b7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.puml new file mode 100644 index 000000000..683b6999b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.svg new file mode 100644 index 000000000..1032c8e6f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.png new file mode 100644 index 000000000..30b715e3f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.puml new file mode 100644 index 000000000..0a7b2d424 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.svg new file mode 100644 index 000000000..8e4f445f8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.png new file mode 100644 index 000000000..d5770dc73 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.puml new file mode 100644 index 000000000..4eb985478 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Items First Or Default Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.svg new file mode 100644 index 000000000..86c1aa2ec --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.png new file mode 100644 index 000000000..7fbe017c5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.puml new file mode 100644 index 000000000..65c1f9603 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Remove") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.svg new file mode 100644 index 000000000..7666db661 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.png new file mode 100644 index 000000000..2ad23f971 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.puml new file mode 100644 index 000000000..d16e12355 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.svg new file mode 100644 index 000000000..6d3c69fdf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.png new file mode 100644 index 000000000..c93fdab9a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.puml new file mode 100644 index 000000000..b67e6063b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.svg new file mode 100644 index 000000000..7a3e50751 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.png new file mode 100644 index 000000000..ae7c047e1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.puml new file mode 100644 index 000000000..35b063846 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Remove + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.svg new file mode 100644 index 000000000..51e3f1fa4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.png new file mode 100644 index 000000000..f599451fa Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.puml new file mode 100644 index 000000000..ef834211a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Remove") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.svg new file mode 100644 index 000000000..c9158c76c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.png new file mode 100644 index 000000000..fc89622ca Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.puml new file mode 100644 index 000000000..7fe8b49b7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.svg new file mode 100644 index 000000000..817bc868b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.png new file mode 100644 index 000000000..b61f8ae95 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.puml new file mode 100644 index 000000000..0faa978d7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.svg new file mode 100644 index 000000000..30bc8af99 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.png new file mode 100644 index 000000000..6a5d060ef Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.puml new file mode 100644 index 000000000..61168d94f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Remove + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.svg new file mode 100644 index 000000000..911d3ea2b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.png new file mode 100644 index 000000000..c4ce3e372 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.puml new file mode 100644 index 000000000..1da7c9b8f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Items Remove") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.svg new file mode 100644 index 000000000..d7b633a19 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.png new file mode 100644 index 000000000..419efba22 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.puml new file mode 100644 index 000000000..61f470fbd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.svg new file mode 100644 index 000000000..4a6eac6ff --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.png new file mode 100644 index 000000000..b5bd46fb0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.puml new file mode 100644 index 000000000..bb8036cb5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.svg new file mode 100644 index 000000000..8582d42f6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.png new file mode 100644 index 000000000..5629544c7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.puml new file mode 100644 index 000000000..88c98577c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Items Remove + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.svg new file mode 100644 index 000000000..502e59dd8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.png new file mode 100644 index 000000000..55c645c4b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.puml new file mode 100644 index 000000000..7c5eecb44 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Single Or Default") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.svg new file mode 100644 index 000000000..1a4ae5605 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.png new file mode 100644 index 000000000..12c20eb72 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.puml new file mode 100644 index 000000000..75e99cde0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.svg new file mode 100644 index 000000000..f02b09d9f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.png new file mode 100644 index 000000000..1a0661291 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.puml new file mode 100644 index 000000000..05ac2247d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.svg new file mode 100644 index 000000000..d889c7553 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.png new file mode 100644 index 000000000..e109068a7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.puml new file mode 100644 index 000000000..f16b89ba0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Single Or Default + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.svg new file mode 100644 index 000000000..3dfc3d15f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.png new file mode 100644 index 000000000..c856af0c5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.puml new file mode 100644 index 000000000..4bbad93fb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Single Or Default") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.svg new file mode 100644 index 000000000..5e221f098 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.png new file mode 100644 index 000000000..756d1a628 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.puml new file mode 100644 index 000000000..b20cbfcd7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.svg new file mode 100644 index 000000000..8794e15ae --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.png new file mode 100644 index 000000000..5b672be59 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.puml new file mode 100644 index 000000000..e39268aea --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.svg new file mode 100644 index 000000000..77dd8f3ff --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.png new file mode 100644 index 000000000..398945558 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.puml new file mode 100644 index 000000000..36e2b9ea7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Single Or Default + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.svg new file mode 100644 index 000000000..f6d862ac7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.png new file mode 100644 index 000000000..e851b95e6 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.puml new file mode 100644 index 000000000..2db2bb455 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Items Single Or Default") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.svg new file mode 100644 index 000000000..82adc396c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.png new file mode 100644 index 000000000..04295002f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.puml new file mode 100644 index 000000000..5c5a25160 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.svg new file mode 100644 index 000000000..ff1206962 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.png new file mode 100644 index 000000000..a13c2fd21 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.puml new file mode 100644 index 000000000..688e8fc02 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.svg new file mode 100644 index 000000000..3d8900445 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.png new file mode 100644 index 000000000..31334a60a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.puml new file mode 100644 index 000000000..33a4b23f7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Items Single Or Default + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.svg new file mode 100644 index 000000000..5060a6d11 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.png new file mode 100644 index 000000000..631340372 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..dc3352f67 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..e6b8a8df9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.png new file mode 100644 index 000000000..342754137 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.puml new file mode 100644 index 000000000..bf7570b0b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.svg new file mode 100644 index 000000000..879cb094f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.png new file mode 100644 index 000000000..04838c39f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.puml new file mode 100644 index 000000000..c35f8b84e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.svg new file mode 100644 index 000000000..769328bdf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.png new file mode 100644 index 000000000..7b119c5ff Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.puml new file mode 100644 index 000000000..11a9d1745 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.svg new file mode 100644 index 000000000..edb299a71 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.png new file mode 100644 index 000000000..1d665fa0a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..6f892e3e1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..697ab52a6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.png new file mode 100644 index 000000000..29abe13f5 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.puml new file mode 100644 index 000000000..b2b002aa4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.svg new file mode 100644 index 000000000..994a13f3d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.png new file mode 100644 index 000000000..e3fb1f2a8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.puml new file mode 100644 index 000000000..1f0f7ce47 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.svg new file mode 100644 index 000000000..bd23ae026 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.png new file mode 100644 index 000000000..677a5fa7e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.puml new file mode 100644 index 000000000..04d50ed2c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.svg new file mode 100644 index 000000000..10f64e05d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.png new file mode 100644 index 000000000..ee523dc05 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..a252a56de --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Items To List Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..9b38934cc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.png new file mode 100644 index 000000000..b81a63a7a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.puml new file mode 100644 index 000000000..acebff403 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.svg new file mode 100644 index 000000000..01e1d85b8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.png new file mode 100644 index 000000000..b917da050 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.puml new file mode 100644 index 000000000..546f99ffc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.svg new file mode 100644 index 000000000..98e207a3d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.png new file mode 100644 index 000000000..65b999b2e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.puml new file mode 100644 index 000000000..feec33d01 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Items To List Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.svg new file mode 100644 index 000000000..2dce518e1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.png new file mode 100644 index 000000000..270da5fe8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.puml new file mode 100644 index 000000000..d09d97cea --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types Add") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.svg new file mode 100644 index 000000000..a57d3a739 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.png new file mode 100644 index 000000000..cde1403de Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.puml new file mode 100644 index 000000000..5c5ebfe2c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.svg new file mode 100644 index 000000000..261df2803 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.png new file mode 100644 index 000000000..289a7108c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.puml new file mode 100644 index 000000000..b73ac649f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.svg new file mode 100644 index 000000000..b2cc8e62b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.png new file mode 100644 index 000000000..b75bd9a3f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.puml new file mode 100644 index 000000000..1c2a8286e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types Add + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.svg new file mode 100644 index 000000000..88f19e74f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.png new file mode 100644 index 000000000..d1c06f51d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.puml new file mode 100644 index 000000000..31a514b1d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types Add") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.svg new file mode 100644 index 000000000..f04b0fd5b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.png new file mode 100644 index 000000000..3e0708de0 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.puml new file mode 100644 index 000000000..4c51422d0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.svg new file mode 100644 index 000000000..39277464a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.png new file mode 100644 index 000000000..81029312b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.puml new file mode 100644 index 000000000..a7203bf62 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.svg new file mode 100644 index 000000000..b6890dcc8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.png new file mode 100644 index 000000000..8d9e57fa9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.puml new file mode 100644 index 000000000..c9322cae8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types Add + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.svg new file mode 100644 index 000000000..47a0f038a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.png new file mode 100644 index 000000000..0c2486db3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.puml new file mode 100644 index 000000000..4cf6e1473 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Types Add") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.svg new file mode 100644 index 000000000..e855b1d6e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.png new file mode 100644 index 000000000..60c7909c2 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.puml new file mode 100644 index 000000000..9199851b2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.svg new file mode 100644 index 000000000..aba7cf485 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.png new file mode 100644 index 000000000..95512d4da Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.puml new file mode 100644 index 000000000..1f83f6174 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.svg new file mode 100644 index 000000000..eb9f5e055 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.png new file mode 100644 index 000000000..2bcce16da Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.puml new file mode 100644 index 000000000..617e8645d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Types Add + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.svg new file mode 100644 index 000000000..dbed5618e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.png new file mode 100644 index 000000000..673138f9c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..0e6bb20bf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types Any Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..6f1a7242b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.png new file mode 100644 index 000000000..7e10c3d82 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.puml new file mode 100644 index 000000000..fdeb738f9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.svg new file mode 100644 index 000000000..9fc185969 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.png new file mode 100644 index 000000000..eedfe0993 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.puml new file mode 100644 index 000000000..2574bd635 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.svg new file mode 100644 index 000000000..0411ce961 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.png new file mode 100644 index 000000000..d574b2b1b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.puml new file mode 100644 index 000000000..cc4f5f966 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types Any Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.svg new file mode 100644 index 000000000..898a09099 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.png new file mode 100644 index 000000000..bf6322fa6 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..f3cbfdc3d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types Any Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..1c832fc38 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.png new file mode 100644 index 000000000..c48bf8f2e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.puml new file mode 100644 index 000000000..d1fc2895c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.svg new file mode 100644 index 000000000..2da9c688e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.png new file mode 100644 index 000000000..5977f807a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.puml new file mode 100644 index 000000000..7eaa0432f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.svg new file mode 100644 index 000000000..d8bdcfce1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.png new file mode 100644 index 000000000..7384c0089 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.puml new file mode 100644 index 000000000..9ae61554e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types Any Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.svg new file mode 100644 index 000000000..58f9e52da --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.png new file mode 100644 index 000000000..79d4e192d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..b5d44ce9a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Types Any Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..43a2c251d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.png new file mode 100644 index 000000000..f1ef8f278 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.puml new file mode 100644 index 000000000..b5123bc8e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.svg new file mode 100644 index 000000000..224aaa0a6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.png new file mode 100644 index 000000000..6f5bb5fff Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.puml new file mode 100644 index 000000000..87c84832f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.svg new file mode 100644 index 000000000..74cd0ec15 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.png new file mode 100644 index 000000000..cb3b6f006 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.puml new file mode 100644 index 000000000..e2fb0d6b4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Types Any Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.svg new file mode 100644 index 000000000..d9186b8ca --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.png new file mode 100644 index 000000000..e5f0a447c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.puml new file mode 100644 index 000000000..bea4b6430 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types As Queryable") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.svg new file mode 100644 index 000000000..a7ec5d849 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.png new file mode 100644 index 000000000..1458ea6cf Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.puml new file mode 100644 index 000000000..f567bd204 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.svg new file mode 100644 index 000000000..904ec153e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.png new file mode 100644 index 000000000..36a72ce77 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.puml new file mode 100644 index 000000000..903a763ee --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.svg new file mode 100644 index 000000000..ba00d35d6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.png new file mode 100644 index 000000000..4b408ce6e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.puml new file mode 100644 index 000000000..8db92417f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types As Queryable + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.svg new file mode 100644 index 000000000..3b660889a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.png new file mode 100644 index 000000000..aa3225e76 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.puml new file mode 100644 index 000000000..4f89d26d8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types As Queryable") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.svg new file mode 100644 index 000000000..66e23bd67 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.png new file mode 100644 index 000000000..2cd55e16c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.puml new file mode 100644 index 000000000..eeb547ea9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.svg new file mode 100644 index 000000000..2d6542e21 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.png new file mode 100644 index 000000000..0e197cc13 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.puml new file mode 100644 index 000000000..39c9e84b8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.svg new file mode 100644 index 000000000..743194a82 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.png new file mode 100644 index 000000000..4cfbd8839 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.puml new file mode 100644 index 000000000..c8cf926b1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types As Queryable + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.svg new file mode 100644 index 000000000..206acd68a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.png new file mode 100644 index 000000000..d761edeb4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.puml new file mode 100644 index 000000000..28b597949 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Types As Queryable") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.svg new file mode 100644 index 000000000..7a6ce5363 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.png new file mode 100644 index 000000000..735778c0a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.puml new file mode 100644 index 000000000..72700cabe --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.svg new file mode 100644 index 000000000..2e336434d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.png new file mode 100644 index 000000000..28305a4a2 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.puml new file mode 100644 index 000000000..1d7dfc6a5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.svg new file mode 100644 index 000000000..6e594f916 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.png new file mode 100644 index 000000000..855ff27d4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.puml new file mode 100644 index 000000000..b8a185f5f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Types As Queryable + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.svg new file mode 100644 index 000000000..6e23765c5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.png new file mode 100644 index 000000000..092c820d1 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..cddf1e055 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types Find Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..7c04ac9f3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.png new file mode 100644 index 000000000..3d048f4bc Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.puml new file mode 100644 index 000000000..6ec29569e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.svg new file mode 100644 index 000000000..4b4694231 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.png new file mode 100644 index 000000000..0bbc6e16c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.puml new file mode 100644 index 000000000..6f30e8a04 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.svg new file mode 100644 index 000000000..d16e987af --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.png new file mode 100644 index 000000000..314c262df Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.puml new file mode 100644 index 000000000..cb7d42c92 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types Find Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.svg new file mode 100644 index 000000000..ab0c2b6a7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.png new file mode 100644 index 000000000..be50511e9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..558ddf11e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types Find Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..fd81992e3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.png new file mode 100644 index 000000000..b27e91134 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.puml new file mode 100644 index 000000000..f78041b4d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.svg new file mode 100644 index 000000000..48995aaef --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.png new file mode 100644 index 000000000..ce3ee42a7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.puml new file mode 100644 index 000000000..d28ca1c8e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.svg new file mode 100644 index 000000000..1f6bfdf8d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.png new file mode 100644 index 000000000..24b25aaa3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.puml new file mode 100644 index 000000000..e2d000227 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types Find Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.svg new file mode 100644 index 000000000..2e9ba639f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.png new file mode 100644 index 000000000..75ed5bd4e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..c25371193 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Types Find Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..f56118bc3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.png new file mode 100644 index 000000000..ed55788d4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.puml new file mode 100644 index 000000000..8ece68688 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.svg new file mode 100644 index 000000000..d6496008d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.png new file mode 100644 index 000000000..7999775ba Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.puml new file mode 100644 index 000000000..3922b502a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.svg new file mode 100644 index 000000000..12e4abc77 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.png new file mode 100644 index 000000000..033b2d5eb Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.puml new file mode 100644 index 000000000..d6d70ecac --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Types Find Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.svg new file mode 100644 index 000000000..47e5cd9e6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.png new file mode 100644 index 000000000..012fd3a54 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..94c63c8b9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types First Or Default Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..ae79a599e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.png new file mode 100644 index 000000000..cc54ca65c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.puml new file mode 100644 index 000000000..8cd6bdb61 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.svg new file mode 100644 index 000000000..ace299a42 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.png new file mode 100644 index 000000000..343ff1dba Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.puml new file mode 100644 index 000000000..dacc46b09 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.svg new file mode 100644 index 000000000..58ffc3774 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.png new file mode 100644 index 000000000..967167d18 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.puml new file mode 100644 index 000000000..85b80f6df --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types First Or Default Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.svg new file mode 100644 index 000000000..4acc88bba --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.png new file mode 100644 index 000000000..74c826d32 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..cfb5e67d2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types First Or Default Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..4eaf0cf5f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.png new file mode 100644 index 000000000..16194ce7a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.puml new file mode 100644 index 000000000..f871545bf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.svg new file mode 100644 index 000000000..b607f92a8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.png new file mode 100644 index 000000000..9827bf041 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.puml new file mode 100644 index 000000000..ab1c03389 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.svg new file mode 100644 index 000000000..3d3a90a24 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.png new file mode 100644 index 000000000..64e152445 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.puml new file mode 100644 index 000000000..4d61439c7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types First Or Default Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.svg new file mode 100644 index 000000000..78acaa91f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.png new file mode 100644 index 000000000..2855d4165 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..983f965ed --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Types First Or Default Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..12f3e9b8f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.png new file mode 100644 index 000000000..4138e181b Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.puml new file mode 100644 index 000000000..c19650092 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.svg new file mode 100644 index 000000000..c9b59ddd1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.png new file mode 100644 index 000000000..2e13e8505 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.puml new file mode 100644 index 000000000..da0c52f31 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.svg new file mode 100644 index 000000000..f7bfaaad7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.png new file mode 100644 index 000000000..6751ea605 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.puml new file mode 100644 index 000000000..ab89d6523 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Types First Or Default Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.svg new file mode 100644 index 000000000..219677fdc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.png new file mode 100644 index 000000000..81617877f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.puml new file mode 100644 index 000000000..cff903302 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types Remove") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.svg new file mode 100644 index 000000000..d4f5254f9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.png new file mode 100644 index 000000000..9b5b8ec76 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.puml new file mode 100644 index 000000000..39b832ed3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.svg new file mode 100644 index 000000000..d9531b510 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.png new file mode 100644 index 000000000..db1b0d11e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.puml new file mode 100644 index 000000000..aaa5413bb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.svg new file mode 100644 index 000000000..86b06c829 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.png new file mode 100644 index 000000000..87703315a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.puml new file mode 100644 index 000000000..b5722558e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types Remove + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.svg new file mode 100644 index 000000000..55e015190 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.png new file mode 100644 index 000000000..b14eb5980 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.puml new file mode 100644 index 000000000..92a64e778 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types Remove") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.svg new file mode 100644 index 000000000..d74797898 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.png new file mode 100644 index 000000000..0f789cd0d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.puml new file mode 100644 index 000000000..25fb81140 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.svg new file mode 100644 index 000000000..b75164445 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.png new file mode 100644 index 000000000..b073a54d4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.puml new file mode 100644 index 000000000..ea0733b6b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.svg new file mode 100644 index 000000000..61fbbebe3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.png new file mode 100644 index 000000000..c5f214bc9 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.puml new file mode 100644 index 000000000..0e5e5a4e5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types Remove + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.svg new file mode 100644 index 000000000..ca58ee751 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.png new file mode 100644 index 000000000..101512ffa Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.puml new file mode 100644 index 000000000..382469cb2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Types Remove") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.svg new file mode 100644 index 000000000..0374bf62e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.png new file mode 100644 index 000000000..2c1cb07e3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.puml new file mode 100644 index 000000000..632a06b58 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.svg new file mode 100644 index 000000000..4829af6fb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.png new file mode 100644 index 000000000..53384a83e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.puml new file mode 100644 index 000000000..78e61dd8f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.svg new file mode 100644 index 000000000..c9a5ac2b0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.png new file mode 100644 index 000000000..2c99c4de8 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.puml new file mode 100644 index 000000000..f8601054a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Types Remove + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.svg new file mode 100644 index 000000000..2993df967 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.png new file mode 100644 index 000000000..af8d48e48 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.puml new file mode 100644 index 000000000..779394ea2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types Single Or Default") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.svg new file mode 100644 index 000000000..3b0fbd77e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.png new file mode 100644 index 000000000..fb3cbe079 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.puml new file mode 100644 index 000000000..acc7066a6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.svg new file mode 100644 index 000000000..cb807bb46 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.png new file mode 100644 index 000000000..a6d97715e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.puml new file mode 100644 index 000000000..ec16e49e6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.svg new file mode 100644 index 000000000..09df69ff8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.png new file mode 100644 index 000000000..6ddb5737f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.puml new file mode 100644 index 000000000..b14987805 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types Single Or Default + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.svg new file mode 100644 index 000000000..a9f3baed2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.png new file mode 100644 index 000000000..0b8362104 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.puml new file mode 100644 index 000000000..912e8cc74 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types Single Or Default") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.svg new file mode 100644 index 000000000..8be7cff92 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.png new file mode 100644 index 000000000..0e0864467 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.puml new file mode 100644 index 000000000..a855d1fdd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.svg new file mode 100644 index 000000000..d21ebbe50 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.png new file mode 100644 index 000000000..65942dfed Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.puml new file mode 100644 index 000000000..82539c7b1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.svg new file mode 100644 index 000000000..dcf9e482f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.png new file mode 100644 index 000000000..bb876607e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.puml new file mode 100644 index 000000000..2103e526a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types Single Or Default + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.svg new file mode 100644 index 000000000..dd350221e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.png new file mode 100644 index 000000000..30cbfb34a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.puml new file mode 100644 index 000000000..80c53bc76 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Types Single Or Default") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.svg new file mode 100644 index 000000000..ba15894e9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.png new file mode 100644 index 000000000..92d313618 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.puml new file mode 100644 index 000000000..f80a8a9c9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.svg new file mode 100644 index 000000000..eab3ee70e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.png new file mode 100644 index 000000000..f4a2789da Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.puml new file mode 100644 index 000000000..ff1bdef9b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.svg new file mode 100644 index 000000000..47d99ae4d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.png new file mode 100644 index 000000000..ffd8d9537 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.puml new file mode 100644 index 000000000..397c3ef26 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Types Single Or Default + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.svg new file mode 100644 index 000000000..59c6e83f0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.png new file mode 100644 index 000000000..d2e0e4cfc Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..f7fb587b5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types To List Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..2a7c9d7df --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.png new file mode 100644 index 000000000..4b496a4e7 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.puml new file mode 100644 index 000000000..a2916b9af --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.svg new file mode 100644 index 000000000..ba832a72a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.png new file mode 100644 index 000000000..02fa47efc Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.puml new file mode 100644 index 000000000..24bc6bbff --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.svg new file mode 100644 index 000000000..6fdb3a437 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.png new file mode 100644 index 000000000..68bbda76d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.puml new file mode 100644 index 000000000..94d230e8a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types To List Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.svg new file mode 100644 index 000000000..a66fce91c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.png new file mode 100644 index 000000000..74ae3e0ad Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..5285495e3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types To List Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..79a43b073 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.png new file mode 100644 index 000000000..8d8afa9c3 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.puml new file mode 100644 index 000000000..1ebe99fa4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.svg new file mode 100644 index 000000000..d8129424e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.png new file mode 100644 index 000000000..94fe798f4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.puml new file mode 100644 index 000000000..250d91bf2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.svg new file mode 100644 index 000000000..89bc51f51 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.png new file mode 100644 index 000000000..5ce80f6c4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.puml new file mode 100644 index 000000000..8d033bcb8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types To List Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.svg new file mode 100644 index 000000000..56d7142ef --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..dd4f431c1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Types To List Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..2d00a2d15 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.png new file mode 100644 index 000000000..e61dc1c1f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.puml new file mode 100644 index 000000000..063ece5e7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.svg new file mode 100644 index 000000000..3782ecfe4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.png new file mode 100644 index 000000000..5c5504856 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.puml new file mode 100644 index 000000000..1d286ae27 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.svg new file mode 100644 index 000000000..f385b8d1b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.png new file mode 100644 index 000000000..f4e4339c6 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.puml new file mode 100644 index 000000000..424a87dbd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Catalog Types To List Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.svg new file mode 100644 index 000000000..9aae38a4d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.png new file mode 100644 index 000000000..c979c6a2e Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.puml new file mode 100644 index 000000000..237875a6a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.puml @@ -0,0 +1,18 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Sequence - Component level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +Boundary_End() +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Save Changes Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.svg new file mode 100644 index 000000000..639d803dc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]Infrastructure[Container]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.png new file mode 100644 index 000000000..aa4ddd482 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.puml new file mode 100644 index 000000000..d31092936 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.svg new file mode 100644 index 000000000..65a04ebe8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.png new file mode 100644 index 000000000..9b051ef1c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.puml new file mode 100644 index 000000000..d6e998fb3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.puml @@ -0,0 +1,30 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.svg new file mode 100644 index 000000000..644775fc0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.png new file mode 100644 index 000000000..1d9cc44ca Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.puml new file mode 100644 index 000000000..ecf4131cc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.puml @@ -0,0 +1,19 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - Sequence - Component level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + +box "Infrastructure" #White + participant "Catalog Context" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext +end box + +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Save Changes Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.svg new file mode 100644 index 000000000..395650dfd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.png new file mode 100644 index 000000000..d701e8ffa Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.puml new file mode 100644 index 000000000..c72f673b0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.puml @@ -0,0 +1,15 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Sequence - Container level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +Boundary_End() + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Save Changes Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.svg new file mode 100644 index 000000000..6001b9163 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.svg @@ -0,0 +1 @@ +Catalog Api[System]DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Sequence - Container level«external_system»External«container»InfrastructureSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.png new file mode 100644 index 000000000..6a59fe3ce Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.puml new file mode 100644 index 000000000..69848e851 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.svg new file mode 100644 index 000000000..1eea8db5e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.png new file mode 100644 index 000000000..a37fb43ed Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.puml new file mode 100644 index 000000000..eaeccee8a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.svg new file mode 100644 index 000000000..58f261a9c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.png new file mode 100644 index 000000000..705cbfdb4 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.puml new file mode 100644 index 000000000..225dfdfde --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.puml @@ -0,0 +1,15 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - Sequence - Container level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem + +box "Catalog Api" #White + participant "Infrastructure" as DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure +end box + + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure : Save Changes Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.svg new file mode 100644 index 000000000..e979d7771 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.png new file mode 100644 index 000000000..7296b79ab Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.puml new file mode 100644 index 000000000..e0a8a74cc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.puml @@ -0,0 +1,12 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Sequence - Context level + +System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + +Rel(C4InterFlow.SoftwareSystems.ExternalSystem, DotNetEShop.SoftwareSystems.CatalogApi, "Save Changes Async") + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.svg new file mode 100644 index 000000000..105c6166e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.png new file mode 100644 index 000000000..ffdc29a72 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.puml new file mode 100644 index 000000000..02999e6a2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.svg new file mode 100644 index 000000000..0910470e4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.png new file mode 100644 index 000000000..26e99cb04 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.puml new file mode 100644 index 000000000..d31dcc400 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.svg new file mode 100644 index 000000000..f095a80bf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.png new file mode 100644 index 000000000..4fa0b0d40 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.puml new file mode 100644 index 000000000..ff2d01971 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.puml @@ -0,0 +1,11 @@ +@startuml + +title DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - Sequence - Context level + +participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem +participant "Catalog Api" as DotNetEShop.SoftwareSystems.CatalogApi + +C4InterFlow.SoftwareSystems.ExternalSystem -> DotNetEShop.SoftwareSystems.CatalogApi : Save Changes Async + + +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.svg new file mode 100644 index 000000000..b967223c7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.png new file mode 100644 index 000000000..f768fac8c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.puml new file mode 100644 index 000000000..0b3ddba94 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.svg new file mode 100644 index 000000000..5df4b0708 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.png new file mode 100644 index 000000000..a488b1959 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.puml new file mode 100644 index 000000000..b9f4e4d8c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.puml @@ -0,0 +1,27 @@ +@startuml +!include ..\..\..\..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - Infrastructure - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.svg new file mode 100644 index 000000000..88d45c462 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - Infrastructure - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4 Static.png new file mode 100644 index 000000000..9c19214aa Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4 Static.puml new file mode 100644 index 000000000..f1146dd1c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4 Static.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4 Static.svg new file mode 100644 index 000000000..3a16a4078 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4.png new file mode 100644 index 000000000..e31c8d6ec Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4.puml new file mode 100644 index 000000000..86d62748e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4.puml @@ -0,0 +1,24 @@ +@startuml +!include ..\..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - Catalog Api - C4 - Context level + +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4.svg new file mode 100644 index 000000000..926cdfdb6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Catalog Api/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - Catalog Api - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4 Static.png new file mode 100644 index 000000000..b00281c0f Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4 Static.puml new file mode 100644 index 000000000..d5412be12 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4 Static.puml @@ -0,0 +1,49 @@ +@startuml +!include ..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - C4 Static - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4 Static.svg new file mode 100644 index 000000000..933d1227a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - C4 Static - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextUsesUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4.png new file mode 100644 index 000000000..90414663c Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4.puml new file mode 100644 index 000000000..5b87f756c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4.puml @@ -0,0 +1,49 @@ +@startuml +!include ..\..\.c4s\C4_Component.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - C4 - Component level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { + Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") +} +} + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") +} + +Container_Boundary(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { + Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") +} +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4.svg new file mode 100644 index 000000000..4ddf02c9f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Component - C4.svg @@ -0,0 +1 @@ +DotNetEShop - C4 - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextKey Delete AsyncString Get Lease AsyncString Set AsyncDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4 Static.png new file mode 100644 index 000000000..bde68943d Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4 Static.puml new file mode 100644 index 000000000..fa9840213 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4 Static.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - C4 Static - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Uses") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4 Static.svg new file mode 100644 index 000000000..42aaee6a5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - C4 Static - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureUsesUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4.png new file mode 100644 index 000000000..3edf40960 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4.puml new file mode 100644 index 000000000..a05fc21fb --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4.puml @@ -0,0 +1,35 @@ +@startuml +!include ..\..\.c4s\C4_Container.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - C4 - Container level + + +System_Boundary(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api") { + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") + Container(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") +} + +System_Boundary(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api") { + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") + Container(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") +} + +Rel(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc, DotNetEShop.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") +Rel(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api, DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4.svg new file mode 100644 index 000000000..cf8ce7cba --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Container - C4.svg @@ -0,0 +1 @@ +DotNetEShop - C4 - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4 Static.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4 Static.png new file mode 100644 index 000000000..d85f9537a Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4 Static.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4 Static.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4 Static.puml new file mode 100644 index 000000000..4d90c55c5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4 Static.puml @@ -0,0 +1,25 @@ +@startuml +!include ..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - C4 Static - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4 Static.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4 Static.svg new file mode 100644 index 000000000..4428484c2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4 Static.svg @@ -0,0 +1 @@ +DotNetEShop - C4 Static - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4.png b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4.png new file mode 100644 index 000000000..6331349c2 Binary files /dev/null and b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4.png differ diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4.puml b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4.puml new file mode 100644 index 000000000..939c6860b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4.puml @@ -0,0 +1,25 @@ +@startuml +!include ..\..\.c4s\C4_Context.puml + +AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") +AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") +AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") + +AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) +AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) +AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) + +SHOW_PERSON_PORTRAIT() +LAYOUT_TOP_DOWN() + +skinparam linetype polyline + +title DotNetEShop - C4 - Context level + +System(DotNetEShop.SoftwareSystems.BasketApi, "Basket Api", "") +System(DotNetEShop.SoftwareSystems.CatalogApi, "Catalog Api", "") + + + +SHOW_LEGEND() +@enduml diff --git a/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4.svg b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4.svg new file mode 100644 index 000000000..b35693560 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Diagrams/DotNetEShop/Software Systems/Context - C4.svg @@ -0,0 +1 @@ +DotNetEShop - C4 - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/dotnet.eShop.Architecture.csproj b/Samples/dotnet.eShop/DotNetEShop/DotNetEShop.csproj similarity index 100% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/dotnet.eShop.Architecture.csproj rename to Samples/dotnet.eShop/DotNetEShop/DotNetEShop.csproj diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi.cs similarity index 75% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi.cs index ac1a19567..648edf67a 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi.cs @@ -2,11 +2,11 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi : ISoftwareSystemInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi"; + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi"; public static SoftwareSystem Instance => new SoftwareSystem(ALIAS, "Basket Api") { Description = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data.cs similarity index 76% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data.cs index d380be017..53647a907 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi { @@ -10,8 +10,8 @@ public partial class Containers { public partial class Data : IContainerInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data"; - public static Container Instance => new Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.ALIAS, ALIAS, "Data") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Data"; + public static Container Instance => new Container(DotNetEShop.SoftwareSystems.BasketApi.ALIAS, ALIAS, "Data") { ContainerType = ContainerType.None, Description = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository.cs similarity index 77% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository.cs index 4b1b454f1..314afdd85 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi { @@ -14,8 +14,8 @@ public partial class Components { public partial class RedisBasketRepository : IComponentInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository"; - public static Component Instance => new Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.ALIAS, ALIAS, "Redis Basket Repository") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository"; + public static Component Instance => new Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.ALIAS, ALIAS, "Redis Basket Repository") { ComponentType = ComponentType.None, Description = "", diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/DeleteBasketAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/DeleteBasketAsync.cs new file mode 100644 index 000000000..25d65cf80 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/DeleteBasketAsync.cs @@ -0,0 +1,43 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class BasketApi + { + public partial class Containers + { + public partial class Data + { + public partial class Components + { + public partial class RedisBasketRepository + { + public partial class Interfaces + { + public partial class DeleteBasketAsync : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.DeleteBasketAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.ALIAS, ALIAS, "Delete Basket Async") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketKey") + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.KeyDeleteAsync"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketAsync.cs new file mode 100644 index 000000000..d3a5d144a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketAsync.cs @@ -0,0 +1,44 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class BasketApi + { + public partial class Containers + { + public partial class Data + { + public partial class Components + { + public partial class RedisBasketRepository + { + public partial class Interfaces + { + public partial class GetBasketAsync : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.ALIAS, ALIAS, "Get Basket Async") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketKey") + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.StringGetLeaseAsync") + .Return(@"JsonSerializer.Deserialize"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketKey.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketKey.cs similarity index 80% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketKey.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketKey.cs index 70d8e560f..a0a30f737 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketKey.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketKey.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class GetBasketKey : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketKey"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.ALIAS, ALIAS, "Get Basket Key") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketKey"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.ALIAS, ALIAS, "Get Basket Key") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/UpdateBasketAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/UpdateBasketAsync.cs new file mode 100644 index 000000000..5f09f231f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/UpdateBasketAsync.cs @@ -0,0 +1,44 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class BasketApi + { + public partial class Containers + { + public partial class Data + { + public partial class Components + { + public partial class RedisBasketRepository + { + public partial class Interfaces + { + public partial class UpdateBasketAsync : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.UpdateBasketAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.ALIAS, ALIAS, "Update Basket Async") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketKey") + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.StringSetAsync") + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketAsync"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase.cs similarity index 78% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase.cs index 0cd050f6b..3a77239cf 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi { @@ -14,8 +14,8 @@ public partial class Components { public partial class RedisDatabase : IComponentInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase"; - public static Component Instance => new Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.ALIAS, ALIAS, "Redis Database") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase"; + public static Component Instance => new Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.ALIAS, ALIAS, "Redis Database") { ComponentType = ComponentType.None, Description = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/KeyDeleteAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/KeyDeleteAsync.cs similarity index 80% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/KeyDeleteAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/KeyDeleteAsync.cs index ad99106f7..24e684043 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/KeyDeleteAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/KeyDeleteAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class KeyDeleteAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.KeyDeleteAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.ALIAS, ALIAS, "Key Delete Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.KeyDeleteAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.ALIAS, ALIAS, "Key Delete Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringGetLeaseAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringGetLeaseAsync.cs similarity index 80% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringGetLeaseAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringGetLeaseAsync.cs index 5d2d8240a..a8a906ca2 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringGetLeaseAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringGetLeaseAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class StringGetLeaseAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.StringGetLeaseAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.ALIAS, ALIAS, "String Get Lease Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.StringGetLeaseAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.ALIAS, ALIAS, "String Get Lease Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringSetAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringSetAsync.cs similarity index 80% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringSetAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringSetAsync.cs index bc896fd71..b22c7ce49 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringSetAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringSetAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class StringSetAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.StringSetAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.ALIAS, ALIAS, "String Set Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.StringSetAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.ALIAS, ALIAS, "String Set Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc.cs similarity index 76% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc.cs index dd65fe57d..0fdc83742 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi { @@ -10,8 +10,8 @@ public partial class Containers { public partial class Grpc : IContainerInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc"; - public static Container Instance => new Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.ALIAS, ALIAS, "Grpc") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc"; + public static Container Instance => new Container(DotNetEShop.SoftwareSystems.BasketApi.ALIAS, ALIAS, "Grpc") { ContainerType = ContainerType.None, Description = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService.cs similarity index 78% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService.cs index b236ac89f..2d4f3bfc2 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi { @@ -14,8 +14,8 @@ public partial class Components { public partial class BasketService : IComponentInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService"; - public static Component Instance => new Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.ALIAS, ALIAS, "Basket Service") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService"; + public static Component Instance => new Component(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.ALIAS, ALIAS, "Basket Service") { ComponentType = ComponentType.None, Description = "", diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/DeleteBasket.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/DeleteBasket.cs new file mode 100644 index 000000000..0e20c1303 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/DeleteBasket.cs @@ -0,0 +1,45 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class BasketApi + { + public partial class Containers + { + public partial class Grpc + { + public partial class Components + { + public partial class BasketService + { + public partial class Interfaces + { + public partial class DeleteBasket : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.DeleteBasket"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Delete Basket") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .If(@"string.IsNullOrEmpty(userId)") + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowNotAuthenticated") + .EndIf() + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.DeleteBasketAsync"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/GetBasket.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/GetBasket.cs new file mode 100644 index 000000000..68e0f2eed --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/GetBasket.cs @@ -0,0 +1,45 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class BasketApi + { + public partial class Containers + { + public partial class Grpc + { + public partial class Components + { + public partial class BasketService + { + public partial class Interfaces + { + public partial class GetBasket : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.GetBasket"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Get Basket") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketAsync") + .If(@"data is not null") + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasketResponse") + .EndIf(), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasket.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasket.cs similarity index 81% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasket.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasket.cs index 3d17c3664..53f036f20 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasket.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasket.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class MapToCustomerBasket : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasket"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Map To Customer Basket") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasket"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Map To Customer Basket") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasketResponse.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasketResponse.cs similarity index 80% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasketResponse.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasketResponse.cs index b66bc441d..1c13f0b3d 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasketResponse.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasketResponse.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class MapToCustomerBasketResponse : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasketResponse"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Map To Customer Basket Response") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasketResponse"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Map To Customer Basket Response") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowBasketDoesNotExist.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowBasketDoesNotExist.cs similarity index 80% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowBasketDoesNotExist.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowBasketDoesNotExist.cs index ab26f3044..aadb93847 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowBasketDoesNotExist.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowBasketDoesNotExist.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class ThrowBasketDoesNotExist : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowBasketDoesNotExist"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Throw Basket Does Not Exist") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowBasketDoesNotExist"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Throw Basket Does Not Exist") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowNotAuthenticated.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowNotAuthenticated.cs similarity index 80% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowNotAuthenticated.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowNotAuthenticated.cs index 8588f92a8..f11940af5 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowNotAuthenticated.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowNotAuthenticated.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class BasketApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class ThrowNotAuthenticated : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowNotAuthenticated"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Throw Not Authenticated") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowNotAuthenticated"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Throw Not Authenticated") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/UpdateBasket.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/UpdateBasket.cs new file mode 100644 index 000000000..3f8627fa6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/UpdateBasket.cs @@ -0,0 +1,50 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class BasketApi + { + public partial class Containers + { + public partial class Grpc + { + public partial class Components + { + public partial class BasketService + { + public partial class Interfaces + { + public partial class UpdateBasket : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.UpdateBasket"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Update Basket") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .If(@"string.IsNullOrEmpty(userId)") + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowNotAuthenticated") + .EndIf() + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasket") + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.UpdateBasketAsync") + .If(@"response is null") + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowBasketDoesNotExist") + .EndIf() + .Use("DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasketResponse"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi.cs new file mode 100644 index 000000000..da74f99e1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi.cs @@ -0,0 +1,24 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class CatalogApi : ISoftwareSystemInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi"; + public static SoftwareSystem Instance => new SoftwareSystem(ALIAS, "Catalog Api") + { + Description = "", + Boundary = Boundary.Internal + }; + + public partial class Containers + { + } + + public partial class Interfaces + { + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api.cs similarity index 76% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api.cs index 036ab6a70..c119efda5 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -10,8 +10,8 @@ public partial class Containers { public partial class Api : IContainerInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api"; - public static Container Instance => new Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.ALIAS, ALIAS, "Api") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api"; + public static Container Instance => new Container(DotNetEShop.SoftwareSystems.CatalogApi.ALIAS, ALIAS, "Api") { ContainerType = ContainerType.None, Description = "", diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi.cs new file mode 100644 index 000000000..79828b746 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi.cs @@ -0,0 +1,33 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class CatalogApi + { + public partial class Containers + { + public partial class Api + { + public partial class Components + { + public partial class CatalogApi : IComponentInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi"; + public static Component Instance => new Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.ALIAS, ALIAS, "Catalog Api") + { + ComponentType = ComponentType.None, + Description = "", + Technology = "" + }; + + public partial class Interfaces + { + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/ChangeUriPlaceholder.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/ChangeUriPlaceholder.cs similarity index 81% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/ChangeUriPlaceholder.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/ChangeUriPlaceholder.cs index 0abf7bdf5..b9238a136 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/ChangeUriPlaceholder.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/ChangeUriPlaceholder.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class ChangeUriPlaceholder : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Change Uri Placeholder") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Change Uri Placeholder") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/CreateItem.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/CreateItem.cs new file mode 100644 index 000000000..02ece459a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/CreateItem.cs @@ -0,0 +1,44 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class CatalogApi + { + public partial class Containers + { + public partial class Api + { + public partial class Components + { + public partial class CatalogApi + { + public partial class Interfaces + { + public partial class CreateItem : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.CreateItem"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Create Item") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsAdd") + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync") + .Return(@"TypedResults.CreatedAtRoute"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/DeleteItemById.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/DeleteItemById.cs new file mode 100644 index 000000000..cc30cc6be --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/DeleteItemById.cs @@ -0,0 +1,48 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class CatalogApi + { + public partial class Containers + { + public partial class Api + { + public partial class Components + { + public partial class CatalogApi + { + public partial class Interfaces + { + public partial class DeleteItemById : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.DeleteItemById"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Delete Item By Id") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsSingleOrDefault") + .If(@"item is null") + .Return(@"TypedResults.NotFound") + .EndIf() + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsRemove") + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync") + .Return(@"TypedResults.NoContent"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetAllItems.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetAllItems.cs new file mode 100644 index 000000000..db4807b84 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetAllItems.cs @@ -0,0 +1,44 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class CatalogApi + { + public partial class Containers + { + public partial class Api + { + public partial class Components + { + public partial class CatalogApi + { + public partial class Interfaces + { + public partial class GetAllItems : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetAllItems"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get All Items") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync") + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder") + .Return(@"TypedResults.Ok"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetFullPath.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetFullPath.cs similarity index 81% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetFullPath.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetFullPath.cs index 5ba9147cc..4d3164ea4 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetFullPath.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetFullPath.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class GetFullPath : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetFullPath"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Full Path") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetFullPath"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Full Path") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetImageMimeTypeFromImageFileExtension.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetImageMimeTypeFromImageFileExtension.cs similarity index 78% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetImageMimeTypeFromImageFileExtension.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetImageMimeTypeFromImageFileExtension.cs index 7ae02dcf5..00f21f114 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetImageMimeTypeFromImageFileExtension.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetImageMimeTypeFromImageFileExtension.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class GetImageMimeTypeFromImageFileExtension : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetImageMimeTypeFromImageFileExtension"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Image Mime Type From Image File Extension") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetImageMimeTypeFromImageFileExtension"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Image Mime Type From Image File Extension") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemById.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemById.cs similarity index 85% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemById.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemById.cs index 638c85fd3..0544b1c77 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemById.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemById.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class GetItemById : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemById"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Item By Id") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemById"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Item By Id") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemPictureById.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemPictureById.cs new file mode 100644 index 000000000..9ed60512b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemPictureById.cs @@ -0,0 +1,47 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class CatalogApi + { + public partial class Containers + { + public partial class Api + { + public partial class Components + { + public partial class CatalogApi + { + public partial class Interfaces + { + public partial class GetItemPictureById : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemPictureById"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Item Picture By Id") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .If(@"item is null") + .Return(@"TypedResults.NotFound") + .EndIf() + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetFullPath") + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetImageMimeTypeFromImageFileExtension") + .Return(@"TypedResults.PhysicalFile"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandAndTypeId.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandAndTypeId.cs new file mode 100644 index 000000000..1089a84a8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandAndTypeId.cs @@ -0,0 +1,43 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class CatalogApi + { + public partial class Containers + { + public partial class Api + { + public partial class Components + { + public partial class CatalogApi + { + public partial class Interfaces + { + public partial class GetItemsByBrandAndTypeId : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsByBrandAndTypeId"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Items By Brand And Type Id") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder") + .Return(@"TypedResults.Ok"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandId.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandId.cs new file mode 100644 index 000000000..d34eea8fa --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandId.cs @@ -0,0 +1,43 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class CatalogApi + { + public partial class Containers + { + public partial class Api + { + public partial class Components + { + public partial class CatalogApi + { + public partial class Interfaces + { + public partial class GetItemsByBrandId : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsByBrandId"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Items By Brand Id") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder") + .Return(@"TypedResults.Ok"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByIds.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByIds.cs new file mode 100644 index 000000000..857bb6996 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByIds.cs @@ -0,0 +1,44 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class CatalogApi + { + public partial class Containers + { + public partial class Api + { + public partial class Components + { + public partial class CatalogApi + { + public partial class Interfaces + { + public partial class GetItemsByIds : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsByIds"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Items By Ids") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync") + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder") + .Return(@"TypedResults.Ok"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByName.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByName.cs new file mode 100644 index 000000000..09ac0650d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByName.cs @@ -0,0 +1,44 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class CatalogApi + { + public partial class Containers + { + public partial class Api + { + public partial class Components + { + public partial class CatalogApi + { + public partial class Interfaces + { + public partial class GetItemsByName : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsByName"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Items By Name") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync") + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder") + .Return(@"TypedResults.Ok"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsBySemanticRelevance.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsBySemanticRelevance.cs new file mode 100644 index 000000000..a61fbc6a0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsBySemanticRelevance.cs @@ -0,0 +1,51 @@ +// +using C4InterFlow.Structures; +using C4InterFlow.Structures.Interfaces; + +namespace DotNetEShop.SoftwareSystems +{ + public partial class CatalogApi + { + public partial class Containers + { + public partial class Api + { + public partial class Components + { + public partial class CatalogApi + { + public partial class Interfaces + { + public partial class GetItemsBySemanticRelevance : IInterfaceInstance + { + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsBySemanticRelevance"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Items By Semantic Relevance") + { + Description = "", + Path = "", + IsPrivate = false, + Protocol = "", + Flow = new Flow(ALIAS) + .If(@"!services.CatalogAI.IsEnabled") + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsByName") + .EndIf() + .If(@"services.Logger.IsEnabled(LogLevel.Debug)") + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync") + .Else() + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync") + .EndIf() + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder") + .Return(@"TypedResults.Ok"), + Input = "", + InputTemplate = "", + Output = "", + OutputTemplate = "" + }; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/MapCatalogApi.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/MapCatalogApi.cs similarity index 81% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/MapCatalogApi.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/MapCatalogApi.cs index 0ba729891..a0262e444 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/MapCatalogApi.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/MapCatalogApi.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class MapCatalogApi : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.MapCatalogApi"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Map Catalog Api") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.MapCatalogApi"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Map Catalog Api") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/UpdateItem.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/UpdateItem.cs similarity index 78% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/UpdateItem.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/UpdateItem.cs index ee8f5b593..1dec5eb83 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/UpdateItem.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/UpdateItem.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class UpdateItem : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.UpdateItem"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Update Item") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.UpdateItem"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Update Item") { Description = "", Path = "", @@ -31,7 +31,7 @@ public partial class UpdateItem : IInterfaceInstance .EndIf() .If(@"priceEntry.IsModified") .Else() - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync") + .Use("DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync") .EndIf() .Return(@"TypedResults.Created"), Input = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure.cs similarity index 75% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure.cs index 49def4586..57007ae0b 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -10,8 +10,8 @@ public partial class Containers { public partial class Infrastructure : IContainerInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure"; - public static Container Instance => new Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.ALIAS, ALIAS, "Infrastructure") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure"; + public static Container Instance => new Container(DotNetEShop.SoftwareSystems.CatalogApi.ALIAS, ALIAS, "Infrastructure") { ContainerType = ContainerType.None, Description = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext.cs similarity index 76% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext.cs index f13cde001..945825e82 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -14,8 +14,8 @@ public partial class Components { public partial class CatalogContext : IComponentInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext"; - public static Component Instance => new Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.ALIAS, ALIAS, "Catalog Context") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext"; + public static Component Instance => new Component(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.ALIAS, ALIAS, "Catalog Context") { ComponentType = ComponentType.None, Description = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAdd.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAdd.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAdd.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAdd.cs index c387c3e54..4200c76da 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAdd.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAdd.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogBrandsAdd : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsAdd"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands Add") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsAdd"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands Add") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAnyAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAnyAsync.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAnyAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAnyAsync.cs index eba43ac00..11941f727 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAnyAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAnyAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogBrandsAnyAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsAnyAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands Any Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsAnyAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands Any Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAsQueryable.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAsQueryable.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAsQueryable.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAsQueryable.cs index b3aefa2b7..6d2edda4d 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAsQueryable.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAsQueryable.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogBrandsAsQueryable : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsAsQueryable"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands As Queryable") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsAsQueryable"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands As Queryable") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFindAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFindAsync.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFindAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFindAsync.cs index 946c7e572..7e154d42f 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFindAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFindAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogBrandsFindAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsFindAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands Find Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsFindAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands Find Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFirstOrDefaultAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFirstOrDefaultAsync.cs similarity index 78% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFirstOrDefaultAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFirstOrDefaultAsync.cs index be5ffb360..ea7eee2e6 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFirstOrDefaultAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFirstOrDefaultAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogBrandsFirstOrDefaultAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsFirstOrDefaultAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands First Or Default Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsFirstOrDefaultAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands First Or Default Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsRemove.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsRemove.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsRemove.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsRemove.cs index 93f5b67e0..6f703fcc1 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsRemove.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsRemove.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogBrandsRemove : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsRemove"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands Remove") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsRemove"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands Remove") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsSingleOrDefault.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsSingleOrDefault.cs similarity index 78% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsSingleOrDefault.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsSingleOrDefault.cs index 9bf0045d9..2c41be7e4 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsSingleOrDefault.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsSingleOrDefault.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogBrandsSingleOrDefault : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsSingleOrDefault"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands Single Or Default") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsSingleOrDefault"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands Single Or Default") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsToListAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsToListAsync.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsToListAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsToListAsync.cs index 4609faa1e..3fd49f2d8 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsToListAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsToListAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogBrandsToListAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsToListAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands To List Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogBrandsToListAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Brands To List Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAdd.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAdd.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAdd.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAdd.cs index a792c9c63..181d474a2 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAdd.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAdd.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogItemsAdd : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsAdd"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items Add") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsAdd"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items Add") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAnyAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAnyAsync.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAnyAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAnyAsync.cs index fe37d6804..343dffe27 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAnyAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAnyAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogItemsAnyAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsAnyAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items Any Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsAnyAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items Any Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAsQueryable.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAsQueryable.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAsQueryable.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAsQueryable.cs index 4f09dbc68..481e140c5 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAsQueryable.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAsQueryable.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogItemsAsQueryable : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsAsQueryable"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items As Queryable") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsAsQueryable"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items As Queryable") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFindAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFindAsync.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFindAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFindAsync.cs index 477b5d8bd..dbca4ba9e 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFindAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFindAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogItemsFindAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsFindAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items Find Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsFindAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items Find Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFirstOrDefaultAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFirstOrDefaultAsync.cs similarity index 78% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFirstOrDefaultAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFirstOrDefaultAsync.cs index 364ce099d..12e0cf326 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFirstOrDefaultAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFirstOrDefaultAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogItemsFirstOrDefaultAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsFirstOrDefaultAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items First Or Default Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsFirstOrDefaultAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items First Or Default Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsRemove.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsRemove.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsRemove.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsRemove.cs index 6983d56d9..e4055d256 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsRemove.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsRemove.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogItemsRemove : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsRemove"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items Remove") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsRemove"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items Remove") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsSingleOrDefault.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsSingleOrDefault.cs similarity index 78% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsSingleOrDefault.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsSingleOrDefault.cs index 09c17541a..d35da0c4a 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsSingleOrDefault.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsSingleOrDefault.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogItemsSingleOrDefault : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsSingleOrDefault"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items Single Or Default") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsSingleOrDefault"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items Single Or Default") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsToListAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsToListAsync.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsToListAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsToListAsync.cs index 272909663..ad6bde560 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsToListAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsToListAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogItemsToListAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items To List Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Items To List Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAdd.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAdd.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAdd.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAdd.cs index e70498e10..5860f67ee 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAdd.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAdd.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogTypesAdd : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesAdd"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types Add") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesAdd"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types Add") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAnyAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAnyAsync.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAnyAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAnyAsync.cs index a18325552..6b278924e 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAnyAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAnyAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogTypesAnyAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesAnyAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types Any Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesAnyAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types Any Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAsQueryable.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAsQueryable.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAsQueryable.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAsQueryable.cs index 86d712cba..4364a3f8c 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAsQueryable.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAsQueryable.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogTypesAsQueryable : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesAsQueryable"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types As Queryable") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesAsQueryable"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types As Queryable") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFindAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFindAsync.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFindAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFindAsync.cs index 2cbec4c84..1b0fab1a1 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFindAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFindAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogTypesFindAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesFindAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types Find Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesFindAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types Find Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFirstOrDefaultAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFirstOrDefaultAsync.cs similarity index 78% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFirstOrDefaultAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFirstOrDefaultAsync.cs index e92bb5bab..6bf33f6b5 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFirstOrDefaultAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFirstOrDefaultAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogTypesFirstOrDefaultAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesFirstOrDefaultAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types First Or Default Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesFirstOrDefaultAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types First Or Default Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesRemove.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesRemove.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesRemove.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesRemove.cs index b6d69a919..b7508da5c 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesRemove.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesRemove.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogTypesRemove : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesRemove"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types Remove") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesRemove"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types Remove") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesSingleOrDefault.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesSingleOrDefault.cs similarity index 78% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesSingleOrDefault.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesSingleOrDefault.cs index 86b7ea525..0273e865b 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesSingleOrDefault.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesSingleOrDefault.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogTypesSingleOrDefault : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesSingleOrDefault"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types Single Or Default") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesSingleOrDefault"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types Single Or Default") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesToListAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesToListAsync.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesToListAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesToListAsync.cs index 76c3849e1..ec48a5d9a 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesToListAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesToListAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class CatalogTypesToListAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesToListAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types To List Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogTypesToListAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Catalog Types To List Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/SaveChangesAsync.cs b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/SaveChangesAsync.cs similarity index 79% rename from Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/SaveChangesAsync.cs rename to Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/SaveChangesAsync.cs index 5336de69c..75155e44f 100644 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/SaveChangesAsync.cs +++ b/Samples/dotnet.eShop/DotNetEShop/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/SaveChangesAsync.cs @@ -2,7 +2,7 @@ using C4InterFlow.Structures; using C4InterFlow.Structures.Interfaces; -namespace dotnet.eShop.Architecture.SoftwareSystems +namespace DotNetEShop.SoftwareSystems { public partial class CatalogApi { @@ -18,8 +18,8 @@ public partial class Interfaces { public partial class SaveChangesAsync : IInterfaceInstance { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Save Changes Async") + private static readonly string ALIAS = "DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync"; + public static Interface Instance => new Interface(DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.ALIAS, ALIAS, "Save Changes Async") { Description = "", Path = "", diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi.yaml new file mode 100644 index 000000000..b9fedc880 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi.yaml @@ -0,0 +1,8 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Label: Basket Api + Boundary: Internal + Description: '' + Containers: {} + Interfaces: {} diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data.yaml new file mode 100644 index 000000000..b1d8dc63e --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data.yaml @@ -0,0 +1,13 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Data: + Label: Data + Description: '' + ContainerType: None + Boundary: Internal + Technology: '' + Components: {} + Interfaces: {} + Entities: {} diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository.yaml new file mode 100644 index 000000000..4e7e7d8b6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository.yaml @@ -0,0 +1,12 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Data: + Components: + RedisBasketRepository: + Label: Redis Basket Repository + ComponentType: None + Description: '' + Technology: '' + Interfaces: {} diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/DeleteBasketAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/DeleteBasketAsync.yaml new file mode 100644 index 000000000..fee8839f4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/DeleteBasketAsync.yaml @@ -0,0 +1,23 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Data: + Components: + RedisBasketRepository: + Interfaces: + DeleteBasketAsync: + Label: Delete Basket Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketKey + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.KeyDeleteAsync + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketAsync.yaml new file mode 100644 index 000000000..ac8803ad3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketAsync.yaml @@ -0,0 +1,25 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Data: + Components: + RedisBasketRepository: + Interfaces: + GetBasketAsync: + Label: Get Basket Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketKey + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.StringGetLeaseAsync + - Type: Return + Expression: JsonSerializer.Deserialize + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketKey.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketKey.yaml new file mode 100644 index 000000000..d4dc47968 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketKey.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Data: + Components: + RedisBasketRepository: + Interfaces: + GetBasketKey: + Label: Get Basket Key + Description: '' + Path: '' + IsPrivate: true + Protocol: '' + Flows: + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/UpdateBasketAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/UpdateBasketAsync.yaml new file mode 100644 index 000000000..a2bb724ed --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/UpdateBasketAsync.yaml @@ -0,0 +1,25 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Data: + Components: + RedisBasketRepository: + Interfaces: + UpdateBasketAsync: + Label: Update Basket Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketKey + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.StringSetAsync + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketAsync + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase.yaml new file mode 100644 index 000000000..6bb04b323 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase.yaml @@ -0,0 +1,12 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Data: + Components: + RedisDatabase: + Label: Redis Database + ComponentType: None + Description: '' + Technology: '' + Interfaces: {} diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/KeyDeleteAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/KeyDeleteAsync.yaml new file mode 100644 index 000000000..b72d189cc --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/KeyDeleteAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Data: + Components: + RedisDatabase: + Interfaces: + KeyDeleteAsync: + Label: Key Delete Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringGetLeaseAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringGetLeaseAsync.yaml new file mode 100644 index 000000000..3a057be83 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringGetLeaseAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Data: + Components: + RedisDatabase: + Interfaces: + StringGetLeaseAsync: + Label: String Get Lease Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringSetAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringSetAsync.yaml new file mode 100644 index 000000000..0699b5076 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringSetAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Data: + Components: + RedisDatabase: + Interfaces: + StringSetAsync: + Label: String Set Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc.yaml new file mode 100644 index 000000000..6c3af9faf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc.yaml @@ -0,0 +1,13 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Grpc: + Label: Grpc + Description: '' + ContainerType: None + Boundary: Internal + Technology: '' + Components: {} + Interfaces: {} + Entities: {} diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService.yaml new file mode 100644 index 000000000..2a3f44ea8 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService.yaml @@ -0,0 +1,12 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Grpc: + Components: + BasketService: + Label: Basket Service + ComponentType: None + Description: '' + Technology: '' + Interfaces: {} diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/DeleteBasket.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/DeleteBasket.yaml new file mode 100644 index 000000000..9374031fd --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/DeleteBasket.yaml @@ -0,0 +1,26 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Grpc: + Components: + BasketService: + Interfaces: + DeleteBasket: + Label: Delete Basket + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: If + Expression: string.IsNullOrEmpty(userId) + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowNotAuthenticated + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.DeleteBasketAsync + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/GetBasket.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/GetBasket.yaml new file mode 100644 index 000000000..217692122 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/GetBasket.yaml @@ -0,0 +1,26 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Grpc: + Components: + BasketService: + Interfaces: + GetBasket: + Label: Get Basket + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketAsync + - Type: If + Expression: data is not null + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasketResponse + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasket.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasket.yaml new file mode 100644 index 000000000..2ec1f6c88 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasket.yaml @@ -0,0 +1,21 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Grpc: + Components: + BasketService: + Interfaces: + MapToCustomerBasket: + Label: Map To Customer Basket + Description: '' + Path: '' + IsPrivate: true + Protocol: '' + Flows: + - Type: Return + Expression: response + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasketResponse.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasketResponse.yaml new file mode 100644 index 000000000..4b4e042a1 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasketResponse.yaml @@ -0,0 +1,21 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Grpc: + Components: + BasketService: + Interfaces: + MapToCustomerBasketResponse: + Label: Map To Customer Basket Response + Description: '' + Path: '' + IsPrivate: true + Protocol: '' + Flows: + - Type: Return + Expression: response + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowBasketDoesNotExist.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowBasketDoesNotExist.yaml new file mode 100644 index 000000000..3c5f9783c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowBasketDoesNotExist.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Grpc: + Components: + BasketService: + Interfaces: + ThrowBasketDoesNotExist: + Label: Throw Basket Does Not Exist + Description: '' + Path: '' + IsPrivate: true + Protocol: '' + Flows: + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowNotAuthenticated.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowNotAuthenticated.yaml new file mode 100644 index 000000000..0bd47c79b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowNotAuthenticated.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Grpc: + Components: + BasketService: + Interfaces: + ThrowNotAuthenticated: + Label: Throw Not Authenticated + Description: '' + Path: '' + IsPrivate: true + Protocol: '' + Flows: + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/UpdateBasket.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/UpdateBasket.yaml new file mode 100644 index 000000000..4238c33ca --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/UpdateBasket.yaml @@ -0,0 +1,35 @@ +DotNetEShop: + SoftwareSystems: + BasketApi: + Containers: + Grpc: + Components: + BasketService: + Interfaces: + UpdateBasket: + Label: Update Basket + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: If + Expression: string.IsNullOrEmpty(userId) + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowNotAuthenticated + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasket + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.UpdateBasketAsync + - Type: If + Expression: response is null + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowBasketDoesNotExist + - Type: Use + Expression: DotNetEShop.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasketResponse + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi.yaml new file mode 100644 index 000000000..767b301ef --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi.yaml @@ -0,0 +1,8 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Label: Catalog Api + Boundary: Internal + Description: '' + Containers: {} + Interfaces: {} diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api.yaml new file mode 100644 index 000000000..8a7f60331 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api.yaml @@ -0,0 +1,13 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Label: Api + Description: '' + ContainerType: None + Boundary: Internal + Technology: '' + Components: {} + Interfaces: {} + Entities: {} diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi.yaml new file mode 100644 index 000000000..162722d1d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi.yaml @@ -0,0 +1,12 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Label: Catalog Api + ComponentType: None + Description: '' + Technology: '' + Interfaces: {} diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/ChangeUriPlaceholder.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/ChangeUriPlaceholder.yaml new file mode 100644 index 000000000..23c362984 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/ChangeUriPlaceholder.yaml @@ -0,0 +1,21 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + ChangeUriPlaceholder: + Label: Change Uri Placeholder + Description: '' + Path: '' + IsPrivate: true + Protocol: '' + Flows: + - Type: Return + Expression: items + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/CreateItem.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/CreateItem.yaml new file mode 100644 index 000000000..5b647ca96 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/CreateItem.yaml @@ -0,0 +1,25 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + CreateItem: + Label: Create Item + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsAdd + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync + - Type: Return + Expression: TypedResults.CreatedAtRoute + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/DeleteItemById.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/DeleteItemById.yaml new file mode 100644 index 000000000..b2f9f19e6 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/DeleteItemById.yaml @@ -0,0 +1,32 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + DeleteItemById: + Label: Delete Item By Id + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsSingleOrDefault + - Type: If + Expression: item is null + Flows: + - Type: Return + Expression: TypedResults.NotFound + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsRemove + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync + - Type: Return + Expression: TypedResults.NoContent + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetAllItems.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetAllItems.yaml new file mode 100644 index 000000000..6c792efb3 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetAllItems.yaml @@ -0,0 +1,25 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + GetAllItems: + Label: Get All Items + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder + - Type: Return + Expression: TypedResults.Ok + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetFullPath.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetFullPath.yaml new file mode 100644 index 000000000..418bcb88f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetFullPath.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + GetFullPath: + Label: Get Full Path + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetImageMimeTypeFromImageFileExtension.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetImageMimeTypeFromImageFileExtension.yaml new file mode 100644 index 000000000..e17627c66 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetImageMimeTypeFromImageFileExtension.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + GetImageMimeTypeFromImageFileExtension: + Label: Get Image Mime Type From Image File Extension + Description: '' + Path: '' + IsPrivate: true + Protocol: '' + Flows: + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemById.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemById.yaml new file mode 100644 index 000000000..d0e0d36f5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemById.yaml @@ -0,0 +1,31 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + GetItemById: + Label: Get Item By Id + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: If + Expression: id <= 0 + Flows: + - Type: Return + Expression: TypedResults.BadRequest + - Type: If + Expression: item == null + Flows: + - Type: Return + Expression: TypedResults.NotFound + - Type: Return + Expression: TypedResults.Ok + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemPictureById.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemPictureById.yaml new file mode 100644 index 000000000..4e2b167a5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemPictureById.yaml @@ -0,0 +1,30 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + GetItemPictureById: + Label: Get Item Picture By Id + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: If + Expression: item is null + Flows: + - Type: Return + Expression: TypedResults.NotFound + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetFullPath + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetImageMimeTypeFromImageFileExtension + - Type: Return + Expression: TypedResults.PhysicalFile + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandAndTypeId.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandAndTypeId.yaml new file mode 100644 index 000000000..49793204f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandAndTypeId.yaml @@ -0,0 +1,23 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + GetItemsByBrandAndTypeId: + Label: Get Items By Brand And Type Id + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder + - Type: Return + Expression: TypedResults.Ok + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandId.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandId.yaml new file mode 100644 index 000000000..6b66eb26f --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandId.yaml @@ -0,0 +1,23 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + GetItemsByBrandId: + Label: Get Items By Brand Id + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder + - Type: Return + Expression: TypedResults.Ok + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByIds.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByIds.yaml new file mode 100644 index 000000000..46b356eb0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByIds.yaml @@ -0,0 +1,25 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + GetItemsByIds: + Label: Get Items By Ids + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder + - Type: Return + Expression: TypedResults.Ok + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByName.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByName.yaml new file mode 100644 index 000000000..e60284393 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByName.yaml @@ -0,0 +1,25 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + GetItemsByName: + Label: Get Items By Name + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder + - Type: Return + Expression: TypedResults.Ok + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsBySemanticRelevance.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsBySemanticRelevance.yaml new file mode 100644 index 000000000..d10770dff --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsBySemanticRelevance.yaml @@ -0,0 +1,37 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + GetItemsBySemanticRelevance: + Label: Get Items By Semantic Relevance + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: If + Expression: '!services.CatalogAI.IsEnabled' + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsByName + - Type: If + Expression: services.Logger.IsEnabled(LogLevel.Debug) + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync + - Type: Else + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder + - Type: Return + Expression: TypedResults.Ok + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/MapCatalogApi.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/MapCatalogApi.yaml new file mode 100644 index 000000000..df9094f05 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/MapCatalogApi.yaml @@ -0,0 +1,21 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + MapCatalogApi: + Label: Map Catalog Api + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: Return + Expression: app + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/UpdateItem.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/UpdateItem.yaml new file mode 100644 index 000000000..60e1e03b7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/UpdateItem.yaml @@ -0,0 +1,33 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Api: + Components: + CatalogApi: + Interfaces: + UpdateItem: + Label: Update Item + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: + - Type: If + Expression: catalogItem == null + Flows: + - Type: Return + Expression: TypedResults.NotFound + - Type: If + Expression: priceEntry.IsModified + Flows: + - Type: Else + Flows: + - Type: Use + Expression: DotNetEShop.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync + - Type: Return + Expression: TypedResults.Created + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure.yaml new file mode 100644 index 000000000..11b1cdbd0 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure.yaml @@ -0,0 +1,13 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Label: Infrastructure + Description: '' + ContainerType: None + Boundary: Internal + Technology: '' + Components: {} + Interfaces: {} + Entities: {} diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext.yaml new file mode 100644 index 000000000..32c157d4a --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext.yaml @@ -0,0 +1,12 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Label: Catalog Context + ComponentType: None + Description: '' + Technology: '' + Interfaces: {} diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAdd.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAdd.yaml new file mode 100644 index 000000000..55fd422b9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAdd.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogBrandsAdd: + Label: Catalog Brands Add + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAnyAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAnyAsync.yaml new file mode 100644 index 000000000..fd20ff18b --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAnyAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogBrandsAnyAsync: + Label: Catalog Brands Any Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAsQueryable.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAsQueryable.yaml new file mode 100644 index 000000000..0449e80aa --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAsQueryable.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogBrandsAsQueryable: + Label: Catalog Brands As Queryable + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFindAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFindAsync.yaml new file mode 100644 index 000000000..c8680d683 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFindAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogBrandsFindAsync: + Label: Catalog Brands Find Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFirstOrDefaultAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFirstOrDefaultAsync.yaml new file mode 100644 index 000000000..a9ad339db --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFirstOrDefaultAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogBrandsFirstOrDefaultAsync: + Label: Catalog Brands First Or Default Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsRemove.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsRemove.yaml new file mode 100644 index 000000000..f1707cb4d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsRemove.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogBrandsRemove: + Label: Catalog Brands Remove + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsSingleOrDefault.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsSingleOrDefault.yaml new file mode 100644 index 000000000..d99f27a9d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsSingleOrDefault.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogBrandsSingleOrDefault: + Label: Catalog Brands Single Or Default + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsToListAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsToListAsync.yaml new file mode 100644 index 000000000..14f33b3c9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsToListAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogBrandsToListAsync: + Label: Catalog Brands To List Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAdd.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAdd.yaml new file mode 100644 index 000000000..31527b4d4 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAdd.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogItemsAdd: + Label: Catalog Items Add + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAnyAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAnyAsync.yaml new file mode 100644 index 000000000..6f74ce127 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAnyAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogItemsAnyAsync: + Label: Catalog Items Any Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAsQueryable.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAsQueryable.yaml new file mode 100644 index 000000000..1f08eaeb9 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAsQueryable.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogItemsAsQueryable: + Label: Catalog Items As Queryable + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFindAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFindAsync.yaml new file mode 100644 index 000000000..4e1c86f56 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFindAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogItemsFindAsync: + Label: Catalog Items Find Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFirstOrDefaultAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFirstOrDefaultAsync.yaml new file mode 100644 index 000000000..8f37d245d --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFirstOrDefaultAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogItemsFirstOrDefaultAsync: + Label: Catalog Items First Or Default Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsRemove.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsRemove.yaml new file mode 100644 index 000000000..18aac762c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsRemove.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogItemsRemove: + Label: Catalog Items Remove + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsSingleOrDefault.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsSingleOrDefault.yaml new file mode 100644 index 000000000..30c768757 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsSingleOrDefault.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogItemsSingleOrDefault: + Label: Catalog Items Single Or Default + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsToListAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsToListAsync.yaml new file mode 100644 index 000000000..8393e5df5 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsToListAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogItemsToListAsync: + Label: Catalog Items To List Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAdd.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAdd.yaml new file mode 100644 index 000000000..ca5748ec2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAdd.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogTypesAdd: + Label: Catalog Types Add + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAnyAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAnyAsync.yaml new file mode 100644 index 000000000..2bfc67565 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAnyAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogTypesAnyAsync: + Label: Catalog Types Any Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAsQueryable.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAsQueryable.yaml new file mode 100644 index 000000000..accefa9e7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAsQueryable.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogTypesAsQueryable: + Label: Catalog Types As Queryable + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFindAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFindAsync.yaml new file mode 100644 index 000000000..c71522915 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFindAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogTypesFindAsync: + Label: Catalog Types Find Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFirstOrDefaultAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFirstOrDefaultAsync.yaml new file mode 100644 index 000000000..061f04d73 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFirstOrDefaultAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogTypesFirstOrDefaultAsync: + Label: Catalog Types First Or Default Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesRemove.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesRemove.yaml new file mode 100644 index 000000000..9d5ed6ccf --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesRemove.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogTypesRemove: + Label: Catalog Types Remove + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesSingleOrDefault.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesSingleOrDefault.yaml new file mode 100644 index 000000000..4226998a2 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesSingleOrDefault.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogTypesSingleOrDefault: + Label: Catalog Types Single Or Default + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesToListAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesToListAsync.yaml new file mode 100644 index 000000000..7a34fcdc7 --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesToListAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + CatalogTypesToListAsync: + Label: Catalog Types To List Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/SaveChangesAsync.yaml b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/SaveChangesAsync.yaml new file mode 100644 index 000000000..3bf24ec3c --- /dev/null +++ b/Samples/dotnet.eShop/DotNetEShop/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/SaveChangesAsync.yaml @@ -0,0 +1,19 @@ +DotNetEShop: + SoftwareSystems: + CatalogApi: + Containers: + Infrastructure: + Components: + CatalogContext: + Interfaces: + SaveChangesAsync: + Label: Save Changes Async + Description: '' + Path: '' + IsPrivate: false + Protocol: '' + Flows: [] + Input: '' + InputTemplate: '' + Output: '' + OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/Properties/launchSettings.json b/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/Properties/launchSettings.json deleted file mode 100644 index 15ff69169..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/Properties/launchSettings.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "profiles": { - "dotnet.eShop.Architecture.Cli": { - "commandName": "Project", - "commandLineArgs": "draw-diagrams -i dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsBySemanticRelevance --aac-input-paths dotnet.eShop.Architecture.dll --aac-reader-strategy \"C4InterFlow.Automation.Readers.CSharpAaCReaderStrategy, C4InterFlow.Automation\" -od \"C:\\C4InterFlow\\Samples\\dotnet.eShop\\dotnet.eShop.Architecture\\Diagrams\" --scopes component-interface --levels-of-details component --types c4-sequence" - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/dotnet.eShop.Architecture.Cli.csproj b/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/dotnet.eShop.Architecture.Cli.csproj deleted file mode 100644 index 8e87c6d30..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture.Cli/dotnet.eShop.Architecture.Cli.csproj +++ /dev/null @@ -1,23 +0,0 @@ - - - - Exe - net6.0 - enable - enable - - - - - - - - - - - - - - - - diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture.sln b/Samples/dotnet.eShop/dotnet.eShop.Architecture.sln deleted file mode 100644 index 910b077cd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture.sln +++ /dev/null @@ -1,43 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.8.34309.116 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet.eShop.Architecture", "dotnet.eShop.Architecture\dotnet.eShop.Architecture.csproj", "{F18C0E05-2B41-4508-B91D-3B84E0535E99}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet.eShop.Architecture.Cli", "dotnet.eShop.Architecture.Cli\dotnet.eShop.Architecture.Cli.csproj", "{0DEABC5C-3A2C-42FE-91B6-E326BA6CF65D}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "C4InterFlow", "..\..\C4InterFlow\C4InterFlow.csproj", "{C7E5280A-0FD1-4916-BB13-7F57A5E5274B}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "C4InterFlow.Automation", "..\..\C4InterFlow.Automation\C4InterFlow.Automation.csproj", "{E47ACFF1-7BAC-4538-9558-D7AA04939546}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F18C0E05-2B41-4508-B91D-3B84E0535E99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F18C0E05-2B41-4508-B91D-3B84E0535E99}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F18C0E05-2B41-4508-B91D-3B84E0535E99}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F18C0E05-2B41-4508-B91D-3B84E0535E99}.Release|Any CPU.Build.0 = Release|Any CPU - {0DEABC5C-3A2C-42FE-91B6-E326BA6CF65D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0DEABC5C-3A2C-42FE-91B6-E326BA6CF65D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0DEABC5C-3A2C-42FE-91B6-E326BA6CF65D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0DEABC5C-3A2C-42FE-91B6-E326BA6CF65D}.Release|Any CPU.Build.0 = Release|Any CPU - {C7E5280A-0FD1-4916-BB13-7F57A5E5274B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C7E5280A-0FD1-4916-BB13-7F57A5E5274B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C7E5280A-0FD1-4916-BB13-7F57A5E5274B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C7E5280A-0FD1-4916-BB13-7F57A5E5274B}.Release|Any CPU.Build.0 = Release|Any CPU - {E47ACFF1-7BAC-4538-9558-D7AA04939546}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E47ACFF1-7BAC-4538-9558-D7AA04939546}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E47ACFF1-7BAC-4538-9558-D7AA04939546}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E47ACFF1-7BAC-4538-9558-D7AA04939546}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {2C727580-ED93-4CC0-9CAF-A1DFE0590CB4} - EndGlobalSection -EndGlobal diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4 Static.png deleted file mode 100644 index c6bbcb3c7..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4 Static.puml deleted file mode 100644 index e5d531916..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4 Static.puml +++ /dev/null @@ -1,49 +0,0 @@ -@startuml -!include .c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title All Software Systems - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4 Static.svg deleted file mode 100644 index a42d316d4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -All Software Systems - C4 Static - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextUsesUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4.png deleted file mode 100644 index af2689f82..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4.puml deleted file mode 100644 index 4f53de3c9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4.puml +++ /dev/null @@ -1,49 +0,0 @@ -@startuml -!include .c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title All Software Systems - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4.svg deleted file mode 100644 index eb2217451..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -All Software Systems - C4 - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextKey Delete AsyncString Get Lease AsyncString Set AsyncDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4 Static.png deleted file mode 100644 index 9c8828537..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4 Static.puml deleted file mode 100644 index dbe386726..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include .c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title All Software Systems - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4 Static.svg deleted file mode 100644 index 7ea798b9f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -All Software Systems - C4 Static - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureUsesUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4.png deleted file mode 100644 index 9c0ba941f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4.puml deleted file mode 100644 index 91cfbd679..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include .c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title All Software Systems - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4.svg deleted file mode 100644 index edfa381d0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -All Software Systems - C4 - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4 Static.png deleted file mode 100644 index a277873a9..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4 Static.puml deleted file mode 100644 index 2657ed8cf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4 Static.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include .c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title All Software Systems - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4 Static.svg deleted file mode 100644 index e0380b3b4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -All Software Systems - C4 Static - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4.png deleted file mode 100644 index 3e27e7c80..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4.puml deleted file mode 100644 index bb212bf78..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include .c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title All Software Systems - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4.svg deleted file mode 100644 index 10274fc7e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -All Software Systems - C4 - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4 Static.png deleted file mode 100644 index c63f2edf2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4 Static.puml deleted file mode 100644 index cc2bfd273..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4 Static.puml +++ /dev/null @@ -1,49 +0,0 @@ -@startuml -!include ..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4 Static.svg deleted file mode 100644 index c515690cf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - C4 Static - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextUsesUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4.png deleted file mode 100644 index c2303e704..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4.puml deleted file mode 100644 index 20031a814..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4.puml +++ /dev/null @@ -1,49 +0,0 @@ -@startuml -!include ..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4.svg deleted file mode 100644 index 2c91d564d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - C4 - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextKey Delete AsyncString Get Lease AsyncString Set AsyncDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4 Static.png deleted file mode 100644 index 5c8b8cc68..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4 Static.puml deleted file mode 100644 index a01458348..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4 Static.svg deleted file mode 100644 index 75c46bea1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - C4 Static - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureUsesUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4.png deleted file mode 100644 index eebf86a14..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4.puml deleted file mode 100644 index 7067324bb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4.svg deleted file mode 100644 index fec4cbe8c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - C4 - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4 Static.png deleted file mode 100644 index 994818648..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4 Static.puml deleted file mode 100644 index 69dc3d192..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4 Static.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include ..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4 Static.svg deleted file mode 100644 index d96df4833..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - C4 Static - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4.png deleted file mode 100644 index ddbf8b844..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4.puml deleted file mode 100644 index 2899d9070..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include ..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4.svg deleted file mode 100644 index 76f88dbfa..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - C4 - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4 Static.png deleted file mode 100644 index b45305310..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4 Static.puml deleted file mode 100644 index f483d8bc6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4 Static.puml +++ /dev/null @@ -1,49 +0,0 @@ -@startuml -!include ..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4 Static.svg deleted file mode 100644 index 60025515d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - C4 Static - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextUsesUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4.png deleted file mode 100644 index d142fd85e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4.puml deleted file mode 100644 index e6b5ae5eb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4.puml +++ /dev/null @@ -1,49 +0,0 @@ -@startuml -!include ..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4.svg deleted file mode 100644 index 667a73a91..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - C4 - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextKey Delete AsyncString Get Lease AsyncString Set AsyncDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4 Static.png deleted file mode 100644 index a88d99700..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4 Static.puml deleted file mode 100644 index 989de3f34..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4 Static.svg deleted file mode 100644 index eb4408761..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - C4 Static - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureUsesUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4.png deleted file mode 100644 index 80fec65fb..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4.puml deleted file mode 100644 index d8ec7d3af..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4.svg deleted file mode 100644 index 3b21ce772..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - C4 - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4 Static.png deleted file mode 100644 index 8619412d2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4 Static.puml deleted file mode 100644 index 0fd7fab4a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4 Static.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include ..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4 Static.svg deleted file mode 100644 index 608d916af..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - C4 Static - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4.png deleted file mode 100644 index f448fcf04..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4.puml deleted file mode 100644 index c62972315..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include ..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4.svg deleted file mode 100644 index c474a032e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - C4 - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4 Static.png deleted file mode 100644 index 1722e1942..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4 Static.puml deleted file mode 100644 index 19c705291..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4 Static.puml +++ /dev/null @@ -1,37 +0,0 @@ -@startuml -!include ..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4 Static.svg deleted file mode 100644 index 6c04a1d54..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - C4 Static - Component levelBasket Api[System]Data[Container]Grpc[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4.png deleted file mode 100644 index fe394197f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4.puml deleted file mode 100644 index e54e23811..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4.puml +++ /dev/null @@ -1,37 +0,0 @@ -@startuml -!include ..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4.svg deleted file mode 100644 index ee3e4730f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - C4 - Component levelBasket Api[System]Data[Container]Grpc[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceKey Delete AsyncString Get Lease AsyncString Set AsyncDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4 Static.png deleted file mode 100644 index d51fce005..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4 Static.puml deleted file mode 100644 index d4d2a33d0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4 Static.svg deleted file mode 100644 index fa55aeec8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - C4 Static - Container levelBasket Api[System]DataGrpcUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4.png deleted file mode 100644 index 4ee36cb3f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4.puml deleted file mode 100644 index e67966fe8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4.svg deleted file mode 100644 index 89989f4fa..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - C4 - Container levelBasket Api[System]DataGrpcDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4 Static.png deleted file mode 100644 index 885c6c523..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4 Static.puml deleted file mode 100644 index ae99c8831..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4 Static.puml +++ /dev/null @@ -1,32 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4 Static.svg deleted file mode 100644 index 5216ee897..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - C4 Static - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4.png deleted file mode 100644 index 2e2009e2e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4.puml deleted file mode 100644 index f50a76738..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4.puml +++ /dev/null @@ -1,32 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4.svg deleted file mode 100644 index c83739f0d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - C4 - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseKey Delete AsyncString Get Lease AsyncString Set AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.png deleted file mode 100644 index db6dba3dd..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.puml deleted file mode 100644 index 95d2cf5da..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.puml +++ /dev/null @@ -1,32 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.svg deleted file mode 100644 index 5bd094f49..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - C4 Static - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.png deleted file mode 100644 index 7e95e5e3a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.puml deleted file mode 100644 index d3e3f0c36..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.puml +++ /dev/null @@ -1,32 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.svg deleted file mode 100644 index 760dfc1f2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - C4 - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseKey Delete AsyncString Get Lease AsyncString Set AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.png deleted file mode 100644 index 64f1d4c3e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.puml deleted file mode 100644 index 669ba9608..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,20 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.svg deleted file mode 100644 index 843e665df..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Data[Container]dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Sequence - Component level«external_system»External«component»Redis Basket Repository«component»Redis DatabaseDelete Basket AsyncKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.png deleted file mode 100644 index f67a6ecfa..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.puml deleted file mode 100644 index 07273b578..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.puml +++ /dev/null @@ -1,32 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.svg deleted file mode 100644 index abfaa2291..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Static - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.png deleted file mode 100644 index 883142055..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.puml deleted file mode 100644 index f0af5f119..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.puml +++ /dev/null @@ -1,32 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.svg deleted file mode 100644 index 215e155d8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseKey Delete AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.png deleted file mode 100644 index a23cada6e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.puml deleted file mode 100644 index 485e5b03f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.puml +++ /dev/null @@ -1,23 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Data" #White - participant "Redis Basket Repository" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository - participant "Redis Database" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Delete Basket Async -group Delete Basket Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : Key Delete Async -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.svg deleted file mode 100644 index a658254c3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - Sequence - Component levelDataExternalExternalRedis Basket RepositoryRedis Basket RepositoryRedis DatabaseRedis DatabaseDelete Basket AsyncDelete Basket AsyncKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.png deleted file mode 100644 index 3abc2ae1a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.puml deleted file mode 100644 index b46191e3e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.svg deleted file mode 100644 index 56625835f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Sequence - Container level«external_system»External«container»DataDelete Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.png deleted file mode 100644 index 7c130043c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.puml deleted file mode 100644 index f6cab7cca..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.svg deleted file mode 100644 index 68af26568..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.png deleted file mode 100644 index f16517c2d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.puml deleted file mode 100644 index 2228bf214..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.svg deleted file mode 100644 index c69d4c424..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.png deleted file mode 100644 index f236ff2c8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.puml deleted file mode 100644 index 719212818..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Data" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data : Delete Basket Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.svg deleted file mode 100644 index 443c61dbb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - Sequence - Container levelBasket ApiExternalExternalDataDataDelete Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.png deleted file mode 100644 index 147f483e2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.puml deleted file mode 100644 index 514adceb1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Delete Basket Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.svg deleted file mode 100644 index 52f3c3119..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Sequence - Context level«external_system»External«system»Basket ApiDelete Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.png deleted file mode 100644 index aa6ff320d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.puml deleted file mode 100644 index 908f85588..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.svg deleted file mode 100644 index 320e85283..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.png deleted file mode 100644 index 9f8a74604..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.puml deleted file mode 100644 index 4822f5e90..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.svg deleted file mode 100644 index ddfc523ed..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.png deleted file mode 100644 index 52e4a7483..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.puml deleted file mode 100644 index e7bc4ce18..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : Delete Basket Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.svg deleted file mode 100644 index df07d341d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Delete Basket Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Delete Basket Async - Sequence - Context levelExternalExternalBasket ApiBasket ApiDelete Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.png deleted file mode 100644 index 27ded0ba0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.puml deleted file mode 100644 index fdb437aa9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,22 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Return (JsonSerializer.Deserialize)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.svg deleted file mode 100644 index e7e34cbfb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Data[Container]dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Sequence - Component level«external_system»External«component»Redis Basket Repository«component»Redis DatabaseGet Basket AsyncString Get Lease AsyncGet Basket KeyReturn(JsonSerializer.Deserialize) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.png deleted file mode 100644 index d5d058c17..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.puml deleted file mode 100644 index 636ac90cf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.puml +++ /dev/null @@ -1,32 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.svg deleted file mode 100644 index e67fb1cbc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Static - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.png deleted file mode 100644 index 43eb9e59a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.puml deleted file mode 100644 index ad5dbe8c1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.puml +++ /dev/null @@ -1,32 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.svg deleted file mode 100644 index d7277a792..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseString Get Lease AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.png deleted file mode 100644 index eeff40523..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.puml deleted file mode 100644 index 42938c857..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Data" #White - participant "Redis Basket Repository" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository - participant "Redis Database" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Async -group Get Basket Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Get Lease Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Return (JsonSerializer.Deserialize) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.svg deleted file mode 100644 index 4b45f8b7a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - Sequence - Component levelDataExternalExternalRedis Basket RepositoryRedis Basket RepositoryRedis DatabaseRedis DatabaseGet Basket AsyncGet Basket AsyncString Get Lease AsyncGet Basket KeyReturn (JsonSerializer.Deserialize) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.png deleted file mode 100644 index ca8850575..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.puml deleted file mode 100644 index c7832debb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Get Basket Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.svg deleted file mode 100644 index e3e546a8f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Sequence - Container level«external_system»External«container»DataGet Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.png deleted file mode 100644 index 819cda635..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.puml deleted file mode 100644 index c7f6479e1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.svg deleted file mode 100644 index e7a7e1f84..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.png deleted file mode 100644 index 405b67ed8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.puml deleted file mode 100644 index 4b42f4bf3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.svg deleted file mode 100644 index 853dd143d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.png deleted file mode 100644 index 4d9badf33..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.puml deleted file mode 100644 index d39d905cd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Data" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data : Get Basket Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.svg deleted file mode 100644 index 3383cdf18..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - Sequence - Container levelBasket ApiExternalExternalDataDataGet Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.png deleted file mode 100644 index 22009bb82..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.puml deleted file mode 100644 index bfecca3b8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Get Basket Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.svg deleted file mode 100644 index e45a4785b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Sequence - Context level«external_system»External«system»Basket ApiGet Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.png deleted file mode 100644 index 409980f8a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.puml deleted file mode 100644 index 45d09e271..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.svg deleted file mode 100644 index 15f1ced85..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.png deleted file mode 100644 index 36ca5cd02..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.puml deleted file mode 100644 index 4fca24c27..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.svg deleted file mode 100644 index 1cb6bcae0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.png deleted file mode 100644 index d86aee0af..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.puml deleted file mode 100644 index 633181195..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : Get Basket Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.svg deleted file mode 100644 index b620f661c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Async - Sequence - Context levelExternalExternalBasket ApiBasket ApiGet Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.png deleted file mode 100644 index e6d0f3e1b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.puml deleted file mode 100644 index 112c82785..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.svg deleted file mode 100644 index 1aec5a50f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Data[Container]dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Sequence - Component level«external_system»External«component»Redis Basket RepositoryGet Basket Key \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.png deleted file mode 100644 index 37183a2a3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.puml deleted file mode 100644 index d14e22eea..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.svg deleted file mode 100644 index b68a7f8ee..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Static - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.png deleted file mode 100644 index a12764e55..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.puml deleted file mode 100644 index db3aa0259..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.svg deleted file mode 100644 index 8313ee622..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.png deleted file mode 100644 index b1cef04ba..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.puml deleted file mode 100644 index 790098ebf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Data" #White - participant "Redis Basket Repository" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.svg deleted file mode 100644 index 98b3b5f10..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - Sequence - Component levelDataExternalExternalRedis Basket RepositoryRedis Basket RepositoryGet Basket Key \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.png deleted file mode 100644 index 0b8e70cea..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.puml deleted file mode 100644 index af44090f8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Get Basket Key") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.svg deleted file mode 100644 index b01e13333..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Sequence - Container level«external_system»External«container»DataGet Basket Key \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.png deleted file mode 100644 index 3f7bae2f3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.puml deleted file mode 100644 index cb12dab67..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.svg deleted file mode 100644 index b0ef9eeaa..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.png deleted file mode 100644 index ac930ee38..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.puml deleted file mode 100644 index 0293afee4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.svg deleted file mode 100644 index acc13b027..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.png deleted file mode 100644 index 47c051663..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.puml deleted file mode 100644 index c0a713355..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Data" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data : Get Basket Key - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.svg deleted file mode 100644 index 397b0c8ae..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - Sequence - Container levelBasket ApiExternalExternalDataDataGet Basket Key \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.png deleted file mode 100644 index de4efec64..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.puml deleted file mode 100644 index e09c6c10d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Get Basket Key") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.svg deleted file mode 100644 index 6bdbe3258..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Sequence - Context level«external_system»External«system»Basket ApiGet Basket Key \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.png deleted file mode 100644 index 4f0be586f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.puml deleted file mode 100644 index 8ef2f28ed..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.svg deleted file mode 100644 index d17ec71f8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.png deleted file mode 100644 index 309159182..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.puml deleted file mode 100644 index c937eaecd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.svg deleted file mode 100644 index 0144c3c95..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.png deleted file mode 100644 index adeedec37..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.puml deleted file mode 100644 index bd469f62b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : Get Basket Key - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.svg deleted file mode 100644 index a08762199..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Get Basket Key/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Get Basket Key - Sequence - Context levelExternalExternalBasket ApiBasket ApiGet Basket Key \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.png deleted file mode 100644 index aab26fbb0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.puml deleted file mode 100644 index 6daec4932..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Update Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Set Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Return (JsonSerializer.Deserialize)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.svg deleted file mode 100644 index 44e12755a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Data[Container]dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Sequence - Component level«external_system»External«component»Redis Basket Repository«component»Redis DatabaseUpdate Basket AsyncString Set AsyncGet Basket KeyGet Basket AsyncString Get Lease AsyncGet Basket KeyReturn(JsonSerializer.Deserialize) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.png deleted file mode 100644 index 3f1e905a0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.puml deleted file mode 100644 index d380848c4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.puml +++ /dev/null @@ -1,32 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.svg deleted file mode 100644 index 6df5c70ed..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Static - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.png deleted file mode 100644 index 48f87619c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.puml deleted file mode 100644 index 5b3712d4a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.puml +++ /dev/null @@ -1,32 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Set Async\nString Get Lease Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.svg deleted file mode 100644 index 3f19ca539..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 - Component levelBasket Api[System]Data[Container]Redis Basket RepositoryRedis DatabaseString Set AsyncString Get Lease AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.png deleted file mode 100644 index 3e7e92cec..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.puml deleted file mode 100644 index fa77f2f4f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Data" #White - participant "Redis Basket Repository" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository - participant "Redis Database" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Update Basket Async -group Update Basket Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Set Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Async -group Get Basket Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Get Lease Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Return (JsonSerializer.Deserialize) -end -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.svg deleted file mode 100644 index a2cb2c3f6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - Sequence - Component levelDataExternalExternalRedis Basket RepositoryRedis Basket RepositoryRedis DatabaseRedis DatabaseUpdate Basket AsyncUpdate Basket AsyncString Set AsyncGet Basket KeyGet Basket AsyncGet Basket AsyncString Get Lease AsyncGet Basket KeyReturn (JsonSerializer.Deserialize) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.png deleted file mode 100644 index 059e093d1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.puml deleted file mode 100644 index 17c4d4efb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Update Basket Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.svg deleted file mode 100644 index 84bcd894f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Sequence - Container level«external_system»External«container»DataUpdate Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.png deleted file mode 100644 index 1d7d678a4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.puml deleted file mode 100644 index b47d38277..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.svg deleted file mode 100644 index c6f6617ce..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.png deleted file mode 100644 index 32c943ac1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.puml deleted file mode 100644 index 67b7e74cb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.svg deleted file mode 100644 index c414d8dd7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.png deleted file mode 100644 index 4595fabf9..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.puml deleted file mode 100644 index 94af7cc05..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Data" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data : Update Basket Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.svg deleted file mode 100644 index 30a9d07dd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - Sequence - Container levelBasket ApiExternalExternalDataDataUpdate Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.png deleted file mode 100644 index e6edfad97..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.puml deleted file mode 100644 index 3eb651784..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Update Basket Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.svg deleted file mode 100644 index 8fed5e554..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Sequence - Context level«external_system»External«system»Basket ApiUpdate Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.png deleted file mode 100644 index 52323b763..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.puml deleted file mode 100644 index 864684c31..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.svg deleted file mode 100644 index ac80bf694..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.png deleted file mode 100644 index 858b843a0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.puml deleted file mode 100644 index 9a2aa73ff..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.svg deleted file mode 100644 index 55ceb52ad..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.png deleted file mode 100644 index 4686e2058..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.puml deleted file mode 100644 index db2c72dda..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : Update Basket Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.svg deleted file mode 100644 index 65040ec5f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Basket Repository/Interfaces/Update Basket Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Basket Repository - Update Basket Async - Sequence - Context levelExternalExternalBasket ApiBasket ApiUpdate Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.png deleted file mode 100644 index 4341e229f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.puml deleted file mode 100644 index bb3885565..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.svg deleted file mode 100644 index 675a49491..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - C4 Static - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.png deleted file mode 100644 index 028ccc0a5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.puml deleted file mode 100644 index de4b72409..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.svg deleted file mode 100644 index d66ea0ad4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - C4 - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.png deleted file mode 100644 index 763370e87..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.puml deleted file mode 100644 index 17ed6a56a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.svg deleted file mode 100644 index c3bb35672..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Data[Container]dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 Sequence - Component level«external_system»External«component»Redis DatabaseKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.png deleted file mode 100644 index 61df5a27d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.puml deleted file mode 100644 index a6a851633..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.svg deleted file mode 100644 index 96802edc6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 Static - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.png deleted file mode 100644 index d8980fd0b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.puml deleted file mode 100644 index 0722a016c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.svg deleted file mode 100644 index e9e8176da..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.png deleted file mode 100644 index c8c8ab94e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.puml deleted file mode 100644 index 24f679194..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Data" #White - participant "Redis Database" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : Key Delete Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.svg deleted file mode 100644 index 0a31c4cab..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - Sequence - Component levelDataExternalExternalRedis DatabaseRedis DatabaseKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.png deleted file mode 100644 index 5707bdbea..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.puml deleted file mode 100644 index c94b1c872..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Key Delete Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.svg deleted file mode 100644 index 44f1d11bb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 Sequence - Container level«external_system»External«container»DataKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.png deleted file mode 100644 index 872bf2a4c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.puml deleted file mode 100644 index a8fccd95e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.svg deleted file mode 100644 index 9fc3ba41d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.png deleted file mode 100644 index 158ef4181..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.puml deleted file mode 100644 index 455784c60..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.svg deleted file mode 100644 index 789771529..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.png deleted file mode 100644 index f8910cd30..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.puml deleted file mode 100644 index 00fe80227..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Data" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data : Key Delete Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.svg deleted file mode 100644 index 876ae1f0f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - Sequence - Container levelBasket ApiExternalExternalDataDataKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.png deleted file mode 100644 index d1896a456..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.puml deleted file mode 100644 index f9ec00edd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Key Delete Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.svg deleted file mode 100644 index 6ec47774d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 Sequence - Context level«external_system»External«system»Basket ApiKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.png deleted file mode 100644 index 18fa01b81..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.puml deleted file mode 100644 index 7fe2d7670..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.svg deleted file mode 100644 index 119f49e94..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.png deleted file mode 100644 index cae3acb48..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.puml deleted file mode 100644 index 0998415af..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.svg deleted file mode 100644 index a3126b65e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.png deleted file mode 100644 index 1ff2fb51b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.puml deleted file mode 100644 index d6b4e8be1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : Key Delete Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.svg deleted file mode 100644 index 3143aca21..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/Key Delete Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - Key Delete Async - Sequence - Context levelExternalExternalBasket ApiBasket ApiKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.png deleted file mode 100644 index 4a07170f3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.puml deleted file mode 100644 index d2b8c4e62..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.svg deleted file mode 100644 index 6dc00e758..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Data[Container]dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 Sequence - Component level«external_system»External«component»Redis DatabaseString Get Lease Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.png deleted file mode 100644 index c05bc3340..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.puml deleted file mode 100644 index 44b5f4c60..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.svg deleted file mode 100644 index cb9d96d54..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 Static - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.png deleted file mode 100644 index 6067faedc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.puml deleted file mode 100644 index c2287c077..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.svg deleted file mode 100644 index 162654f48..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.png deleted file mode 100644 index 2f9be3211..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.puml deleted file mode 100644 index 9ddc787d4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Data" #White - participant "Redis Database" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Get Lease Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.svg deleted file mode 100644 index a59205ca0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - Sequence - Component levelDataExternalExternalRedis DatabaseRedis DatabaseString Get Lease Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.png deleted file mode 100644 index 15e9d2fda..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.puml deleted file mode 100644 index e8650f7c5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "String Get Lease Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.svg deleted file mode 100644 index 43858c224..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 Sequence - Container level«external_system»External«container»DataString Get Lease Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.png deleted file mode 100644 index 9d4464cc4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.puml deleted file mode 100644 index 16fb27e0f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.svg deleted file mode 100644 index 7faaee5b0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.png deleted file mode 100644 index b4c94c09a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.puml deleted file mode 100644 index 14c9e16e9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.svg deleted file mode 100644 index 1508653b8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.png deleted file mode 100644 index d61ca5812..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.puml deleted file mode 100644 index ef2d2965e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Data" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data : String Get Lease Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.svg deleted file mode 100644 index 62bf58c05..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - Sequence - Container levelBasket ApiExternalExternalDataDataString Get Lease Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.png deleted file mode 100644 index 3440e499b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.puml deleted file mode 100644 index c32bead09..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "String Get Lease Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.svg deleted file mode 100644 index 4083b30b0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 Sequence - Context level«external_system»External«system»Basket ApiString Get Lease Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.png deleted file mode 100644 index cb871a741..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.puml deleted file mode 100644 index a69fa0a3f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.svg deleted file mode 100644 index 12afbbff1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.png deleted file mode 100644 index 6693a779c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.puml deleted file mode 100644 index e7df5db3a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.svg deleted file mode 100644 index 662e2c5d6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.png deleted file mode 100644 index 757973fd6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.puml deleted file mode 100644 index 09ac0595c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : String Get Lease Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.svg deleted file mode 100644 index 8a3318ff9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Get Lease Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Get Lease Async - Sequence - Context levelExternalExternalBasket ApiBasket ApiString Get Lease Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.png deleted file mode 100644 index 5841c598b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.puml deleted file mode 100644 index fbb0a7edc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Set Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.svg deleted file mode 100644 index cefc3b0b4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Data[Container]dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 Sequence - Component level«external_system»External«component»Redis DatabaseString Set Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.png deleted file mode 100644 index 7af4395fb..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.puml deleted file mode 100644 index df08476c7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.svg deleted file mode 100644 index 133d07020..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 Static - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.png deleted file mode 100644 index 6cb3f9241..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.puml deleted file mode 100644 index d75835144..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.svg deleted file mode 100644 index b1d390387..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 - Component levelBasket Api[System]Data[Container]Redis DatabaseLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.png deleted file mode 100644 index 98b00eefa..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.puml deleted file mode 100644 index 84700b4dd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Data" #White - participant "Redis Database" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Set Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.svg deleted file mode 100644 index 482d9f14f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - Sequence - Component levelDataExternalExternalRedis DatabaseRedis DatabaseString Set Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.png deleted file mode 100644 index df109221e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.puml deleted file mode 100644 index b5d68e2d8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "String Set Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.svg deleted file mode 100644 index b7aad6e88..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 Sequence - Container level«external_system»External«container»DataString Set Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.png deleted file mode 100644 index 197915f11..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.puml deleted file mode 100644 index 32bb7cc44..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.svg deleted file mode 100644 index 45271819e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.png deleted file mode 100644 index 94a849f53..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.puml deleted file mode 100644 index 1fda42457..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.svg deleted file mode 100644 index 6afdd1878..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.png deleted file mode 100644 index d39f0582e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.puml deleted file mode 100644 index ebb3240e8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Data" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data : String Set Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.svg deleted file mode 100644 index 8aa5a2723..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - Sequence - Container levelBasket ApiExternalExternalDataDataString Set Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.png deleted file mode 100644 index 3535951d5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.puml deleted file mode 100644 index df620291c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "String Set Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.svg deleted file mode 100644 index d14dbe971..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 Sequence - Context level«external_system»External«system»Basket ApiString Set Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.png deleted file mode 100644 index 432b0103e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.puml deleted file mode 100644 index 0e36bf2db..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.svg deleted file mode 100644 index 45366bd62..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.png deleted file mode 100644 index 43d271784..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.puml deleted file mode 100644 index 9e6244d42..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.svg deleted file mode 100644 index 40483cab4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.png deleted file mode 100644 index ef6098fe4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.puml deleted file mode 100644 index b06092522..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : String Set Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.svg deleted file mode 100644 index 787943cd0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Components/Redis Database/Interfaces/String Set Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - Redis Database - String Set Async - Sequence - Context levelExternalExternalBasket ApiBasket ApiString Set Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4 Static.png deleted file mode 100644 index f4ce6e02c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4 Static.puml deleted file mode 100644 index e82da24e3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4 Static.svg deleted file mode 100644 index be7e8c501..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - C4 Static - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4.png deleted file mode 100644 index a72fe6af4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4.puml deleted file mode 100644 index aa6acfabe..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Data - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4.svg deleted file mode 100644 index f21d746c3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Data/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Data - C4 - Container levelBasket Api[System]DataLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.png deleted file mode 100644 index dd58bdf9d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.puml deleted file mode 100644 index a771d04cf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.puml +++ /dev/null @@ -1,37 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.svg deleted file mode 100644 index 1076724d0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - C4 Static - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4.png deleted file mode 100644 index bb466630f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4.puml deleted file mode 100644 index 098ac881a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4.puml +++ /dev/null @@ -1,37 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4.svg deleted file mode 100644 index d4bcd4e3c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - C4 - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncKey Delete AsyncString Get Lease AsyncString Set AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.png deleted file mode 100644 index 4b1329fe4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.puml deleted file mode 100644 index dcc2dadb9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.puml +++ /dev/null @@ -1,37 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.svg deleted file mode 100644 index 27f10f426..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - C4 Static - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.png deleted file mode 100644 index e1c6b0f56..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.puml deleted file mode 100644 index 0a6924131..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.puml +++ /dev/null @@ -1,37 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.svg deleted file mode 100644 index a16ace378..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - C4 - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncKey Delete AsyncString Get Lease AsyncString Set AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.png deleted file mode 100644 index 0c26945df..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.puml deleted file mode 100644 index 2f91cd5fc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.puml +++ /dev/null @@ -1,28 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -Boundary_End() - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Delete Basket") -alt string.IsNullOrEmpty(userId) -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Throw Not Authenticated") -end -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.svg deleted file mode 100644 index 98ac8633e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Grpc[Container]Data[Container]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 Sequence - Component level«external_system»External«component»Basket Service«component»Redis Basket Repository«component»Redis DatabaseDelete Basketalt[string.IsNullOrEmpty(userId)]Throw Not AuthenticatedDelete Basket AsyncKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.png deleted file mode 100644 index af272cb2d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.puml deleted file mode 100644 index 8d32ac5ee..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.puml +++ /dev/null @@ -1,37 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.svg deleted file mode 100644 index 18dd0cdc3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 Static - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.png deleted file mode 100644 index eb7aa1d37..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.puml deleted file mode 100644 index e3ae4cce7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.puml +++ /dev/null @@ -1,37 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.svg deleted file mode 100644 index 8d17dc121..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseDelete Basket AsyncKey Delete AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.png deleted file mode 100644 index 8fd47325d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.puml deleted file mode 100644 index efd7e882b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.puml +++ /dev/null @@ -1,34 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Grpc" #White - participant "Basket Service" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -end box - - -box "Data" #White - participant "Redis Basket Repository" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository - participant "Redis Database" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Delete Basket -group Delete Basket -alt string.IsNullOrEmpty(userId) -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Throw Not Authenticated -end -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Delete Basket Async -group Delete Basket Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : Key Delete Async -end -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.svg deleted file mode 100644 index 27e1d3955..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - Sequence - Component levelGrpcDataExternalExternalBasket ServiceBasket ServiceRedis Basket RepositoryRedis Basket RepositoryRedis DatabaseRedis DatabaseDelete BasketDelete Basketalt[string.IsNullOrEmpty(userId)]Throw Not AuthenticatedDelete Basket AsyncDelete Basket AsyncKey Delete Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.png deleted file mode 100644 index 83970b363..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.puml deleted file mode 100644 index d6e0d30b2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.puml +++ /dev/null @@ -1,17 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Delete Basket") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.svg deleted file mode 100644 index 8b641e0b0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 Sequence - Container level«external_system»External«container»Grpc«container»DataDelete BasketDelete Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.png deleted file mode 100644 index 8d34c574b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.puml deleted file mode 100644 index 7c7ff9599..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.svg deleted file mode 100644 index faa576b0e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 Static - Container levelBasket Api[System]GrpcDataUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.png deleted file mode 100644 index df4ae2b79..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.puml deleted file mode 100644 index e61a59440..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.svg deleted file mode 100644 index 4284592b6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 - Container levelBasket Api[System]GrpcDataDelete Basket AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.png deleted file mode 100644 index 9793f4478..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.puml deleted file mode 100644 index a981e4da8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Grpc" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc - participant "Data" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc : Delete Basket -group Delete Basket -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data : Delete Basket Async -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.svg deleted file mode 100644 index 0d89a78b6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcDataDataDelete BasketDelete BasketDelete Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.png deleted file mode 100644 index 89249302f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.puml deleted file mode 100644 index e215526a7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Delete Basket") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.svg deleted file mode 100644 index 682428510..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 Sequence - Context level«external_system»External«system»Basket ApiDelete Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.png deleted file mode 100644 index da10c00ae..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.puml deleted file mode 100644 index 618e83a61..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.svg deleted file mode 100644 index a2b755d8e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.png deleted file mode 100644 index e1a0f1dab..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.puml deleted file mode 100644 index ea2cb4196..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.svg deleted file mode 100644 index ee2ba1e7b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.png deleted file mode 100644 index a6aaafa56..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.puml deleted file mode 100644 index 45330f125..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : Delete Basket - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.svg deleted file mode 100644 index 806d1b49e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Delete Basket/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Delete Basket - Sequence - Context levelExternalExternalBasket ApiBasket ApiDelete Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.png deleted file mode 100644 index dd40584e8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.puml deleted file mode 100644 index e38df11e8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.puml +++ /dev/null @@ -1,31 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -Boundary_End() - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Get Basket") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Return (JsonSerializer.Deserialize)") -alt data is not null -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Map To Customer Basket Response") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Return (response)") -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.svg deleted file mode 100644 index e54fcf842..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Grpc[Container]Data[Container]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 Sequence - Component level«external_system»External«component»Basket Service«component»Redis Basket Repository«component»Redis DatabaseGet BasketGet Basket AsyncString Get Lease AsyncGet Basket KeyReturn(JsonSerializer.Deserialize)alt[data is not null]Map To Customer BasketResponseReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.png deleted file mode 100644 index 7e63e19a8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.puml deleted file mode 100644 index dad18bd15..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.puml +++ /dev/null @@ -1,37 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.svg deleted file mode 100644 index f4bf3d080..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 Static - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.png deleted file mode 100644 index 3ef0adc28..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.puml deleted file mode 100644 index 773a78a73..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.puml +++ /dev/null @@ -1,37 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.svg deleted file mode 100644 index 21cd1cc24..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseGet Basket AsyncString Get Lease AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.png deleted file mode 100644 index cc0c7b3ba..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.puml deleted file mode 100644 index 557444006..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.puml +++ /dev/null @@ -1,39 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Grpc" #White - participant "Basket Service" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -end box - - -box "Data" #White - participant "Redis Basket Repository" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository - participant "Redis Database" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Get Basket -group Get Basket -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Async -group Get Basket Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Get Lease Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Return (JsonSerializer.Deserialize) -end -alt data is not null -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Map To Customer Basket Response -group Map To Customer Basket Response -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Return (response) -end -end -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.svg deleted file mode 100644 index 68a8f36ff..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - Sequence - Component levelGrpcDataExternalExternalBasket ServiceBasket ServiceRedis Basket RepositoryRedis Basket RepositoryRedis DatabaseRedis DatabaseGet BasketGet BasketGet Basket AsyncGet Basket AsyncString Get Lease AsyncGet Basket KeyReturn (JsonSerializer.Deserialize)alt[data is not null]Map To Customer Basket ResponseMap To Customer Basket ResponseReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.png deleted file mode 100644 index 68d514380..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.puml deleted file mode 100644 index f69569590..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.puml +++ /dev/null @@ -1,17 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Get Basket") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Get Basket Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.svg deleted file mode 100644 index 66c406636..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 Sequence - Container level«external_system»External«container»Grpc«container»DataGet BasketGet Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.png deleted file mode 100644 index 56f4b8205..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.puml deleted file mode 100644 index 0ec6dc1b2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.svg deleted file mode 100644 index ef67eb12f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 Static - Container levelBasket Api[System]GrpcDataUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.png deleted file mode 100644 index 0a8dd7e97..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.puml deleted file mode 100644 index c4648b46f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Get Basket Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.svg deleted file mode 100644 index 22166d4f8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 - Container levelBasket Api[System]GrpcDataGet Basket AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.png deleted file mode 100644 index 76e62812b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.puml deleted file mode 100644 index f78131f2d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Grpc" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc - participant "Data" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc : Get Basket -group Get Basket -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data : Get Basket Async -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.svg deleted file mode 100644 index d70f8c560..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcDataDataGet BasketGet BasketGet Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.png deleted file mode 100644 index 2d895b9fc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.puml deleted file mode 100644 index 6adc93d79..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Get Basket") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.svg deleted file mode 100644 index dd047b804..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 Sequence - Context level«external_system»External«system»Basket ApiGet Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.png deleted file mode 100644 index 2b422d541..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.puml deleted file mode 100644 index 95ba815e1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.svg deleted file mode 100644 index f9daadeda..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.png deleted file mode 100644 index a8c6ad361..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.puml deleted file mode 100644 index b510699a4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.svg deleted file mode 100644 index 544fd978d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.png deleted file mode 100644 index 24f1deb65..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.puml deleted file mode 100644 index 28d554c2d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : Get Basket - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.svg deleted file mode 100644 index 5439f4407..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Get Basket/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Get Basket - Sequence - Context levelExternalExternalBasket ApiBasket ApiGet Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.png deleted file mode 100644 index a24089e58..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.puml deleted file mode 100644 index be24cad54..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Map To Customer Basket Response") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Return (response)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.svg deleted file mode 100644 index 3c2ed5adc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Grpc[Container]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Sequence - Component level«external_system»External«component»Basket ServiceMap To Customer BasketResponseReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.png deleted file mode 100644 index fb1e3ef10..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.puml deleted file mode 100644 index b16683a86..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.svg deleted file mode 100644 index b206bfb50..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Static - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.png deleted file mode 100644 index e0a2868b2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.puml deleted file mode 100644 index dbbe267df..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.svg deleted file mode 100644 index d09dea5b1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.png deleted file mode 100644 index 785abe802..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.puml deleted file mode 100644 index a09b5c770..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.puml +++ /dev/null @@ -1,22 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Grpc" #White - participant "Basket Service" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Map To Customer Basket Response -group Map To Customer Basket Response -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Return (response) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.svg deleted file mode 100644 index 88a2c9f47..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - Sequence - Component levelGrpcExternalExternalBasket ServiceBasket ServiceMap To Customer Basket ResponseMap To Customer Basket ResponseReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.png deleted file mode 100644 index c83d5f247..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.puml deleted file mode 100644 index 19b3f1a0a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Map To Customer Basket Response") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.svg deleted file mode 100644 index 0d0a38f1f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Sequence - Container level«external_system»External«container»GrpcMap To Customer BasketResponse \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.png deleted file mode 100644 index 17665b65c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.puml deleted file mode 100644 index 825fc5c14..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.svg deleted file mode 100644 index 7f1db6bd6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Static - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.png deleted file mode 100644 index e09e499ae..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.puml deleted file mode 100644 index aa3b042f7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.svg deleted file mode 100644 index 1b2515ff9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.png deleted file mode 100644 index 232804601..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.puml deleted file mode 100644 index eb7cdb82d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Grpc" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc : Map To Customer Basket Response - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.svg deleted file mode 100644 index c1c01b985..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcMap To Customer Basket Response \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.png deleted file mode 100644 index 2c710b071..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.puml deleted file mode 100644 index ebf75706a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Map To Customer Basket Response") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.svg deleted file mode 100644 index 3a63bda79..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Sequence - Context level«external_system»External«system»Basket ApiMap To Customer BasketResponse \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.png deleted file mode 100644 index 3f0e3684d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.puml deleted file mode 100644 index 6d07bab60..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.svg deleted file mode 100644 index da6f9b286..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.png deleted file mode 100644 index 6f8e21fe7..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.puml deleted file mode 100644 index 87a64cdfc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.svg deleted file mode 100644 index 225faef4d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.png deleted file mode 100644 index e04e6ea23..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.puml deleted file mode 100644 index f806a0651..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : Map To Customer Basket Response - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.svg deleted file mode 100644 index 4360a778e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket Response/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket Response - Sequence - Context levelExternalExternalBasket ApiBasket ApiMap To Customer Basket Response \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.png deleted file mode 100644 index e428d320d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.puml deleted file mode 100644 index 20c2bcf34..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Map To Customer Basket") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Return (response)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.svg deleted file mode 100644 index 50ce0c4e2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Grpc[Container]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Sequence - Component level«external_system»External«component»Basket ServiceMap To Customer BasketReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.png deleted file mode 100644 index 6c9d438e8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.puml deleted file mode 100644 index 33911ef9b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.svg deleted file mode 100644 index 0752dfdb0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Static - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.png deleted file mode 100644 index ae4c43c7e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.puml deleted file mode 100644 index 37614ddff..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.svg deleted file mode 100644 index 055361162..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.png deleted file mode 100644 index 74b98fcea..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.puml deleted file mode 100644 index ff0372086..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.puml +++ /dev/null @@ -1,22 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Grpc" #White - participant "Basket Service" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Map To Customer Basket -group Map To Customer Basket -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Return (response) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.svg deleted file mode 100644 index a0640834d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - Sequence - Component levelGrpcExternalExternalBasket ServiceBasket ServiceMap To Customer BasketMap To Customer BasketReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.png deleted file mode 100644 index 29bbb90e4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.puml deleted file mode 100644 index f3ae02e91..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Map To Customer Basket") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.svg deleted file mode 100644 index de63f40e0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Sequence - Container level«external_system»External«container»GrpcMap To Customer Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.png deleted file mode 100644 index 5b155113f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.puml deleted file mode 100644 index 02bfec188..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.svg deleted file mode 100644 index 8bb5b7001..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Static - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.png deleted file mode 100644 index aba9af5ab..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.puml deleted file mode 100644 index 554c888ff..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.svg deleted file mode 100644 index 6f7589acc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.png deleted file mode 100644 index a4f828dbb..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.puml deleted file mode 100644 index 1064e7507..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Grpc" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc : Map To Customer Basket - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.svg deleted file mode 100644 index bda91801b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcMap To Customer Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.png deleted file mode 100644 index 041775c51..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.puml deleted file mode 100644 index 78f0a7037..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Map To Customer Basket") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.svg deleted file mode 100644 index b1169e65b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Sequence - Context level«external_system»External«system»Basket ApiMap To Customer Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.png deleted file mode 100644 index de76febb2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.puml deleted file mode 100644 index 47a6c5ac3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.svg deleted file mode 100644 index 0c807ffda..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.png deleted file mode 100644 index 90050078d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.puml deleted file mode 100644 index d46af7d64..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.svg deleted file mode 100644 index f0f717c0f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.png deleted file mode 100644 index b31f574c2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.puml deleted file mode 100644 index 55b100ed4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : Map To Customer Basket - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.svg deleted file mode 100644 index e5ae92a70..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Map To Customer Basket/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Map To Customer Basket - Sequence - Context levelExternalExternalBasket ApiBasket ApiMap To Customer Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.png deleted file mode 100644 index 6d0af54f4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.puml deleted file mode 100644 index 5b60e8a5c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Throw Basket Does Not Exist") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.svg deleted file mode 100644 index 4fa9425a5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Grpc[Container]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Sequence - Component level«external_system»External«component»Basket ServiceThrow Basket Does NotExist \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.png deleted file mode 100644 index fe53f6f79..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.puml deleted file mode 100644 index 5a5c94689..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.svg deleted file mode 100644 index 3491aae07..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Static - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.png deleted file mode 100644 index 4495ea651..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.puml deleted file mode 100644 index 69ecad1be..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.svg deleted file mode 100644 index d2f9154ab..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.png deleted file mode 100644 index 7a97c9128..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.puml deleted file mode 100644 index 8ebabb310..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Grpc" #White - participant "Basket Service" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Throw Basket Does Not Exist - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.svg deleted file mode 100644 index ba1807ba2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - Sequence - Component levelGrpcExternalExternalBasket ServiceBasket ServiceThrow Basket Does Not Exist \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.png deleted file mode 100644 index 0a31423aa..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.puml deleted file mode 100644 index d491bcff0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Throw Basket Does Not Exist") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.svg deleted file mode 100644 index ddac945e0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Sequence - Container level«external_system»External«container»GrpcThrow Basket Does NotExist \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.png deleted file mode 100644 index 35d77c34a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.puml deleted file mode 100644 index 269245b83..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.svg deleted file mode 100644 index 4a9311ab5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Static - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.png deleted file mode 100644 index ed51b3912..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.puml deleted file mode 100644 index 42f0591a9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.svg deleted file mode 100644 index fa863d2af..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.png deleted file mode 100644 index 44849691b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.puml deleted file mode 100644 index e7796b0cd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Grpc" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc : Throw Basket Does Not Exist - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.svg deleted file mode 100644 index feb78f9cf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcThrow Basket Does Not Exist \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.png deleted file mode 100644 index d02456028..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.puml deleted file mode 100644 index 6a91c2eae..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Throw Basket Does Not Exist") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.svg deleted file mode 100644 index 01b3c7c91..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Sequence - Context level«external_system»External«system»Basket ApiThrow Basket Does NotExist \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.png deleted file mode 100644 index c5b406dc3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.puml deleted file mode 100644 index f7bb18f48..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.svg deleted file mode 100644 index dd804015d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.png deleted file mode 100644 index 685f55866..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.puml deleted file mode 100644 index 04017e6bf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.svg deleted file mode 100644 index 5b6fb8878..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.png deleted file mode 100644 index 4520bb2ef..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.puml deleted file mode 100644 index 7594de3b8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : Throw Basket Does Not Exist - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.svg deleted file mode 100644 index bd7e56969..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Basket Does Not Exist/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Basket Does Not Exist - Sequence - Context levelExternalExternalBasket ApiBasket ApiThrow Basket Does Not Exist \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.png deleted file mode 100644 index fd04a11e6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.puml deleted file mode 100644 index 79baf1c87..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Throw Not Authenticated") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.svg deleted file mode 100644 index 7e2820ba3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Grpc[Container]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Sequence - Component level«external_system»External«component»Basket ServiceThrow Not Authenticated \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.png deleted file mode 100644 index 67d3cc553..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.puml deleted file mode 100644 index d5f7a5f22..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.svg deleted file mode 100644 index 4e18e8466..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Static - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.png deleted file mode 100644 index e6d0eccc1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.puml deleted file mode 100644 index b561bf960..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.svg deleted file mode 100644 index dc7b73ecd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 - Component levelBasket Api[System]Grpc[Container]Basket ServiceLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.png deleted file mode 100644 index 04ba865bc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.puml deleted file mode 100644 index 61a0a1e74..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Grpc" #White - participant "Basket Service" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Throw Not Authenticated - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.svg deleted file mode 100644 index 582c93433..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - Sequence - Component levelGrpcExternalExternalBasket ServiceBasket ServiceThrow Not Authenticated \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.png deleted file mode 100644 index 0f47c5d38..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.puml deleted file mode 100644 index 9a0804974..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Throw Not Authenticated") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.svg deleted file mode 100644 index 73aa9733e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Sequence - Container level«external_system»External«container»GrpcThrow Not Authenticated \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.png deleted file mode 100644 index a3d698fd3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.puml deleted file mode 100644 index 50b164c3e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.svg deleted file mode 100644 index ad9132d16..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Static - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.png deleted file mode 100644 index f8e17c8f9..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.puml deleted file mode 100644 index 5a3683153..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.svg deleted file mode 100644 index b3c9daac2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 - Container levelBasket Api[System]GrpcLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.png deleted file mode 100644 index 9b0cd4d14..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.puml deleted file mode 100644 index 48173988e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Grpc" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc : Throw Not Authenticated - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.svg deleted file mode 100644 index 59a86f817..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcThrow Not Authenticated \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.png deleted file mode 100644 index e6afa8366..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.puml deleted file mode 100644 index 3bfdf484f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Throw Not Authenticated") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.svg deleted file mode 100644 index 403122695..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Sequence - Context level«external_system»External«system»Basket ApiThrow Not Authenticated \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.png deleted file mode 100644 index cc0e29518..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.puml deleted file mode 100644 index 4149be963..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.svg deleted file mode 100644 index cbf25247b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.png deleted file mode 100644 index 98a250f65..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.puml deleted file mode 100644 index d5a96e4ef..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.svg deleted file mode 100644 index 42c2a2d1d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.png deleted file mode 100644 index 4951b8dcf..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.puml deleted file mode 100644 index 07f4d1133..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : Throw Not Authenticated - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.svg deleted file mode 100644 index f5e53769f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Throw Not Authenticated/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Throw Not Authenticated - Sequence - Context levelExternalExternalBasket ApiBasket ApiThrow Not Authenticated \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.png deleted file mode 100644 index 5519ca4bd..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.puml deleted file mode 100644 index 0ab945bbe..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.puml +++ /dev/null @@ -1,40 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -Boundary_End() - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Update Basket") -alt string.IsNullOrEmpty(userId) -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Throw Not Authenticated") -end -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Map To Customer Basket") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Return (response)") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Update Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Set Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Get Lease Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Get Basket Key") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Return (JsonSerializer.Deserialize)") -alt response is null -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Throw Basket Does Not Exist") -end -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Map To Customer Basket Response") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Return (response)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.svg deleted file mode 100644 index 88b658f2d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]Grpc[Container]Data[Container]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 Sequence - Component level«external_system»External«component»Basket Service«component»Redis Basket Repository«component»Redis DatabaseUpdate Basketalt[string.IsNullOrEmpty(userId)]Throw Not AuthenticatedMap To Customer BasketReturn (response)Update Basket AsyncString Set AsyncGet Basket KeyGet Basket AsyncString Get Lease AsyncGet Basket KeyReturn(JsonSerializer.Deserialize)alt[response is null]Throw Basket Does NotExistMap To Customer BasketResponseReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.png deleted file mode 100644 index 2e9ae51b3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.puml deleted file mode 100644 index 47dc7f019..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.puml +++ /dev/null @@ -1,37 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.svg deleted file mode 100644 index 7f6dd6b05..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 Static - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.png deleted file mode 100644 index f3b2f0375..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.puml deleted file mode 100644 index 279404e97..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.puml +++ /dev/null @@ -1,37 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Update Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "String Set Async\nString Get Lease Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.svg deleted file mode 100644 index 3a5c28724..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 - Component levelBasket Api[System]Grpc[Container]Data[Container]Basket ServiceRedis Basket RepositoryRedis DatabaseUpdate Basket AsyncString Set AsyncString Get Lease AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.png deleted file mode 100644 index 1cadd0b7b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.puml deleted file mode 100644 index 3738743d2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.puml +++ /dev/null @@ -1,52 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - -box "Grpc" #White - participant "Basket Service" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -end box - - -box "Data" #White - participant "Redis Basket Repository" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository - participant "Redis Database" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Update Basket -group Update Basket -alt string.IsNullOrEmpty(userId) -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Throw Not Authenticated -end -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Map To Customer Basket -group Map To Customer Basket -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Return (response) -end -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Update Basket Async -group Update Basket Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Set Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Async -group Get Basket Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase : String Get Lease Async -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Get Basket Key -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository : Return (JsonSerializer.Deserialize) -end -end -alt response is null -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Throw Basket Does Not Exist -end -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Map To Customer Basket Response -group Map To Customer Basket Response -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService : Return (response) -end -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.svg deleted file mode 100644 index c8a8d791d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - Sequence - Component levelGrpcDataExternalExternalBasket ServiceBasket ServiceRedis Basket RepositoryRedis Basket RepositoryRedis DatabaseRedis DatabaseUpdate BasketUpdate Basketalt[string.IsNullOrEmpty(userId)]Throw Not AuthenticatedMap To Customer BasketMap To Customer BasketReturn (response)Update Basket AsyncUpdate Basket AsyncString Set AsyncGet Basket KeyGet Basket AsyncGet Basket AsyncString Get Lease AsyncGet Basket KeyReturn (JsonSerializer.Deserialize)alt[response is null]Throw Basket Does Not ExistMap To Customer Basket ResponseMap To Customer Basket ResponseReturn (response) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.png deleted file mode 100644 index 6fc9c89bd..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.puml deleted file mode 100644 index 391825a61..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.puml +++ /dev/null @@ -1,17 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Update Basket") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Update Basket Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.svg deleted file mode 100644 index e2f43c544..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Basket Api[System]dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 Sequence - Container level«external_system»External«container»Grpc«container»DataUpdate BasketUpdate Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.png deleted file mode 100644 index e071eb328..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.puml deleted file mode 100644 index a3f02b0b3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.svg deleted file mode 100644 index 8272417aa..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 Static - Container levelBasket Api[System]GrpcDataUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.png deleted file mode 100644 index 25df524a8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.puml deleted file mode 100644 index c00506f14..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Update Basket Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.svg deleted file mode 100644 index e6c560e10..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 - Container levelBasket Api[System]GrpcDataUpdate Basket AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.png deleted file mode 100644 index 955f7ff62..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.puml deleted file mode 100644 index 1922bd0d8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Basket Api" #White - participant "Grpc" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc - participant "Data" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc : Update Basket -group Update Basket -dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data : Update Basket Async -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.svg deleted file mode 100644 index 7ba97dcd6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - Sequence - Container levelBasket ApiExternalExternalGrpcGrpcDataDataUpdate BasketUpdate BasketUpdate Basket Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.png deleted file mode 100644 index 7c29ebc2c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.puml deleted file mode 100644 index 92e5b79f6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Update Basket") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.svg deleted file mode 100644 index 9ebb58b2b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 Sequence - Context level«external_system»External«system»Basket ApiUpdate Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.png deleted file mode 100644 index f6b051ea5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.puml deleted file mode 100644 index 62c81763f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.svg deleted file mode 100644 index c678a6a17..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.png deleted file mode 100644 index 514566c31..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.puml deleted file mode 100644 index 0afcca40f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.svg deleted file mode 100644 index 080c0f370..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.png deleted file mode 100644 index d846476eb..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.puml deleted file mode 100644 index 8b78c1236..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Basket Api" as dotnet.eShop.Architecture.SoftwareSystems.BasketApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.BasketApi : Update Basket - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.svg deleted file mode 100644 index 4f6b9f620..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Components/Basket Service/Interfaces/Update Basket/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - Basket Service - Update Basket - Sequence - Context levelExternalExternalBasket ApiBasket ApiUpdate Basket \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.png deleted file mode 100644 index e8968ba13..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.puml deleted file mode 100644 index 664d26ed1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.svg deleted file mode 100644 index de3b03cd8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - C4 Static - Container levelBasket Api[System]GrpcDataUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4.png deleted file mode 100644 index 34eb6ca69..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4.puml deleted file mode 100644 index 4ce725ab1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - Grpc - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4.svg deleted file mode 100644 index 163486b4c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Containers/Grpc/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - Grpc - C4 - Container levelBasket Api[System]GrpcDataDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4 Static.png deleted file mode 100644 index 98dd4eec7..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4 Static.puml deleted file mode 100644 index 28e6c401f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4 Static.svg deleted file mode 100644 index 534d5f4fb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - C4 Static - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4.png deleted file mode 100644 index 271f23ab5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4.puml deleted file mode 100644 index 08eecd0af..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Basket Api - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4.svg deleted file mode 100644 index f7adff8e7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Basket Api/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Basket Api - C4 - Context levelBasket ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4 Static.png deleted file mode 100644 index 99793104b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4 Static.puml deleted file mode 100644 index 732c0c5f9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4 Static.svg deleted file mode 100644 index fd5f06deb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4.png deleted file mode 100644 index 57ccf055e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4.puml deleted file mode 100644 index 86d91cc7d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4.svg deleted file mode 100644 index 54254b329..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4 Static.png deleted file mode 100644 index 863579b06..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4 Static.puml deleted file mode 100644 index 55525bdbf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4 Static.svg deleted file mode 100644 index 9f5a10eb9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4.png deleted file mode 100644 index 0e4868ebd..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4.puml deleted file mode 100644 index 4c5a3e5d9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4.svg deleted file mode 100644 index 6254636a6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.png deleted file mode 100644 index 558eb237f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.puml deleted file mode 100644 index acd4791db..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.svg deleted file mode 100644 index 3c31118a1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4.png deleted file mode 100644 index 76b59f4b3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4.puml deleted file mode 100644 index 7ab64d575..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4.svg deleted file mode 100644 index a89f67de5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.png deleted file mode 100644 index dcfd5f742..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.puml deleted file mode 100644 index cbc37ae9b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.svg deleted file mode 100644 index 1e9c0f76b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.png deleted file mode 100644 index b27397cf2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.puml deleted file mode 100644 index fc9ea1b2a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.svg deleted file mode 100644 index 51ce4d089..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.png deleted file mode 100644 index c932b9a86..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.puml deleted file mode 100644 index 8c3951dac..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.svg deleted file mode 100644 index 243f13840..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Sequence - Component level«external_system»External«component»Catalog ApiChange Uri PlaceholderReturn (items) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.png deleted file mode 100644 index 696137ed0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.puml deleted file mode 100644 index 95e9f15a1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.svg deleted file mode 100644 index cdf364e0f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.png deleted file mode 100644 index e21df0a0f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.puml deleted file mode 100644 index b2c8d999c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.svg deleted file mode 100644 index 0e4c1eeae..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.png deleted file mode 100644 index 063078100..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.puml deleted file mode 100644 index d6a12f315..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.puml +++ /dev/null @@ -1,22 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder -group Change Uri Placeholder -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.svg deleted file mode 100644 index d9fd46a1e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiChange Uri PlaceholderChange Uri PlaceholderReturn (items) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.png deleted file mode 100644 index 00536a2f1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.puml deleted file mode 100644 index 9fae7c329..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Change Uri Placeholder") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.svg deleted file mode 100644 index 9995df177..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Sequence - Container level«external_system»External«container»ApiChange Uri Placeholder \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.png deleted file mode 100644 index 8009f3a34..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.puml deleted file mode 100644 index 1b3c8330a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.svg deleted file mode 100644 index 78d61fdaa..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.png deleted file mode 100644 index 82aa370e3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.puml deleted file mode 100644 index f6854fb70..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.svg deleted file mode 100644 index 4393e2ab1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.png deleted file mode 100644 index a986735a5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.puml deleted file mode 100644 index 8d6d1743d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Change Uri Placeholder - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.svg deleted file mode 100644 index 8b1f8c6f7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - Sequence - Container levelCatalog ApiExternalExternalApiApiChange Uri Placeholder \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.png deleted file mode 100644 index 58397ca4f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.puml deleted file mode 100644 index c329ef07a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Change Uri Placeholder") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.svg deleted file mode 100644 index 6c0d3546b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Sequence - Context level«external_system»External«system»Catalog ApiChange Uri Placeholder \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.png deleted file mode 100644 index 589b0875a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.puml deleted file mode 100644 index 3890ed74e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.svg deleted file mode 100644 index 62ad22100..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.png deleted file mode 100644 index c7e673e46..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.puml deleted file mode 100644 index ee0e6cbb0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.svg deleted file mode 100644 index d5c102528..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.png deleted file mode 100644 index bd975ec10..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.puml deleted file mode 100644 index 06dfbe20a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Change Uri Placeholder - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.svg deleted file mode 100644 index 9ca02a1f4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Change Uri Placeholder/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Change Uri Placeholder - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiChange Uri Placeholder \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.png deleted file mode 100644 index c1137d453..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.puml deleted file mode 100644 index e668c3c61..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Create Item") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Save Changes Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.CreatedAtRoute)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.svg deleted file mode 100644 index 6e8ab9e5b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextCreate ItemCatalog Items AddSave Changes AsyncReturn(TypedResults.CreatedAtRoute) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.png deleted file mode 100644 index 1283147b3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.puml deleted file mode 100644 index 515ea9e94..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.svg deleted file mode 100644 index 3d39deaa3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.png deleted file mode 100644 index e706bf278..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.puml deleted file mode 100644 index 7714b2d34..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.svg deleted file mode 100644 index f33c33901..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items AddSave Changes AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.png deleted file mode 100644 index 7deba7e95..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.puml deleted file mode 100644 index 91816a91f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Create Item -group Create Item -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Add -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Save Changes Async -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.CreatedAtRoute) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.svg deleted file mode 100644 index f95910dee..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextCreate ItemCreate ItemCatalog Items AddSave Changes AsyncReturn (TypedResults.CreatedAtRoute) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.png deleted file mode 100644 index 71a3ed4a4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.puml deleted file mode 100644 index 2aeee84a3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Create Item") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Save Changes Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.svg deleted file mode 100644 index 5c9dab54d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureCreate ItemCatalog Items AddSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.png deleted file mode 100644 index 249b4526e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.puml deleted file mode 100644 index e017c465f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.svg deleted file mode 100644 index ab1dd9f8b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.png deleted file mode 100644 index 98ad8a287..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.puml deleted file mode 100644 index cd64b561b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.svg deleted file mode 100644 index bf30b129f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items AddSave Changes AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.png deleted file mode 100644 index 291dfa252..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.puml deleted file mode 100644 index 6ce996bde..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.puml +++ /dev/null @@ -1,20 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Create Item -group Create Item -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Add -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Save Changes Async -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.svg deleted file mode 100644 index 43fa33a04..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureCreate ItemCreate ItemCatalog Items AddSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.png deleted file mode 100644 index 1016ae85c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.puml deleted file mode 100644 index facdd21ff..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Create Item") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.svg deleted file mode 100644 index d3be65ef7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 Sequence - Context level«external_system»External«system»Catalog ApiCreate Item \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.png deleted file mode 100644 index 50af10f72..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.puml deleted file mode 100644 index cdc2c9abc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.svg deleted file mode 100644 index a6f403983..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.png deleted file mode 100644 index 5eda29c46..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.puml deleted file mode 100644 index 42c803730..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.svg deleted file mode 100644 index 21f9f9539..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.png deleted file mode 100644 index b79f6d205..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.puml deleted file mode 100644 index 237a7fd1b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Create Item - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.svg deleted file mode 100644 index f59a4eef1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Create Item/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Create Item - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCreate Item \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.puml deleted file mode 100644 index 3800a47c1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Delete Item By Id") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Single Or Default") -alt item is null -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.NotFound)") -end -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Remove") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Save Changes Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.NoContent)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.svg deleted file mode 100644 index 72d05ec55..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextDelete Item By IdCatalog Items Single OrDefaultalt[item is null]Return(TypedResults.NotFound)Catalog Items RemoveSave Changes AsyncReturn(TypedResults.NoContent) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.png deleted file mode 100644 index 903afaa40..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.puml deleted file mode 100644 index 3c4544d17..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.svg deleted file mode 100644 index c3a004ebf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.png deleted file mode 100644 index fe44a1849..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.puml deleted file mode 100644 index 7324afcc2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Single Or Default\nCatalog Items Remove\nSave Changes Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.svg deleted file mode 100644 index 01066f6c1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items Single OrDefaultCatalog Items RemoveSave Changes AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.png deleted file mode 100644 index 80dae8452..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.puml deleted file mode 100644 index 2cb03b7a0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.puml +++ /dev/null @@ -1,33 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Delete Item By Id -group Delete Item By Id -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Single Or Default -alt item is null -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.NotFound) -end -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Remove -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Save Changes Async -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.NoContent) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.svg deleted file mode 100644 index b769f3aee..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextDelete Item By IdDelete Item By IdCatalog Items Single Or Defaultalt[item is null]Return (TypedResults.NotFound)Catalog Items RemoveSave Changes AsyncReturn (TypedResults.NoContent) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.png deleted file mode 100644 index d5ce9d24a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.puml deleted file mode 100644 index 8ac8dcd63..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Delete Item By Id") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Single Or Default") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Remove") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Save Changes Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.svg deleted file mode 100644 index c4f42733a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureDelete Item By IdCatalog Items Single OrDefaultCatalog Items RemoveSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.png deleted file mode 100644 index 83a25b824..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.puml deleted file mode 100644 index 71d552dbb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.svg deleted file mode 100644 index 86b5cdfa4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.png deleted file mode 100644 index 40c977863..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.puml deleted file mode 100644 index e7ebe0f32..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Single Or Default\nCatalog Items Remove\nSave Changes Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.svg deleted file mode 100644 index feed69b1f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items Single OrDefaultCatalog Items RemoveSave Changes AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.png deleted file mode 100644 index cb43e3674..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.puml deleted file mode 100644 index 0772df127..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.puml +++ /dev/null @@ -1,21 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Delete Item By Id -group Delete Item By Id -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Single Or Default -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Remove -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Save Changes Async -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.svg deleted file mode 100644 index 1e9252f1a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureDelete Item By IdDelete Item By IdCatalog Items Single Or DefaultCatalog Items RemoveSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.png deleted file mode 100644 index fd97ac74c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.puml deleted file mode 100644 index 62feff208..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Delete Item By Id") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.svg deleted file mode 100644 index 3ce067fa6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Sequence - Context level«external_system»External«system»Catalog ApiDelete Item By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.png deleted file mode 100644 index 474a2bc8e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.puml deleted file mode 100644 index 48e15b731..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.svg deleted file mode 100644 index 87bd6a53b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.png deleted file mode 100644 index 350678494..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.puml deleted file mode 100644 index c3ba6e86f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.svg deleted file mode 100644 index dfc1db419..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.png deleted file mode 100644 index 69fb753a5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.puml deleted file mode 100644 index 80789be46..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Delete Item By Id - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.svg deleted file mode 100644 index ca22ee28a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Delete Item By Id/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Delete Item By Id - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiDelete Item By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.png deleted file mode 100644 index ebde89ef5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.puml deleted file mode 100644 index f4e67e897..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.puml +++ /dev/null @@ -1,26 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get All Items") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.svg deleted file mode 100644 index 98e07a90e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextGet All ItemsCatalog Items To ListAsyncChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.png deleted file mode 100644 index 6faeb8245..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.puml deleted file mode 100644 index c70bd3529..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.svg deleted file mode 100644 index 27d3feccd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.png deleted file mode 100644 index 63b8f742f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.puml deleted file mode 100644 index 73bafa598..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.svg deleted file mode 100644 index ba53f3958..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.png deleted file mode 100644 index 6b070dbb3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.puml deleted file mode 100644 index 709b3332d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.puml +++ /dev/null @@ -1,32 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get All Items -group Get All Items -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder -group Change Uri Placeholder -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) -end -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.svg deleted file mode 100644 index 73eaed7f8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextGet All ItemsGet All ItemsCatalog Items To List AsyncChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.png deleted file mode 100644 index d400a0949..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.puml deleted file mode 100644 index d29feea2b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.puml +++ /dev/null @@ -1,17 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Get All Items") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.svg deleted file mode 100644 index f56eab364..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureGet All ItemsCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.png deleted file mode 100644 index b21cde57e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.puml deleted file mode 100644 index 54fb7286f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.svg deleted file mode 100644 index 3aecad768..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.png deleted file mode 100644 index 286d9d927..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.puml deleted file mode 100644 index 08448e3fc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.svg deleted file mode 100644 index b82f70714..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.png deleted file mode 100644 index 5e5aab758..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.puml deleted file mode 100644 index f9e8865b1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Get All Items -group Get All Items -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.svg deleted file mode 100644 index aea6f65ba..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureGet All ItemsGet All ItemsCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.png deleted file mode 100644 index 8e5972186..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.puml deleted file mode 100644 index 101306000..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Get All Items") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.svg deleted file mode 100644 index c5f3c299b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet All Items \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.png deleted file mode 100644 index 769114fa2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.puml deleted file mode 100644 index 908061b62..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.svg deleted file mode 100644 index 5ad81eaea..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.png deleted file mode 100644 index a49499ddb..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.puml deleted file mode 100644 index cc60b76b4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.svg deleted file mode 100644 index faf363cc8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.png deleted file mode 100644 index c210fa2f3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.puml deleted file mode 100644 index bc56b4beb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Get All Items - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.svg deleted file mode 100644 index f386cfd6a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get All Items/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get All Items - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet All Items \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.png deleted file mode 100644 index 49d892ac3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.puml deleted file mode 100644 index 6734f9b95..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Full Path") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.svg deleted file mode 100644 index f0bb46518..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 Sequence - Component level«external_system»External«component»Catalog ApiGet Full Path \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.png deleted file mode 100644 index fc759bcf3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.puml deleted file mode 100644 index f14e92ee4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.svg deleted file mode 100644 index 05a455a99..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.png deleted file mode 100644 index 8e8a9eef0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.puml deleted file mode 100644 index 0ffd0fd8d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.svg deleted file mode 100644 index 690ab5dfd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.png deleted file mode 100644 index 3663fe5b4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.puml deleted file mode 100644 index d5b32468d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Full Path - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.svg deleted file mode 100644 index 8f2e599b9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiGet Full Path \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.png deleted file mode 100644 index 0307bdb18..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.puml deleted file mode 100644 index 6951d9b0b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Get Full Path") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.svg deleted file mode 100644 index 2cae90628..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 Sequence - Container level«external_system»External«container»ApiGet Full Path \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.png deleted file mode 100644 index e0f11928b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.puml deleted file mode 100644 index 9d690c8d7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.svg deleted file mode 100644 index 6d9e6c770..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.png deleted file mode 100644 index 1ff62e458..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.puml deleted file mode 100644 index 0da2c3686..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.svg deleted file mode 100644 index 85087aa98..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.png deleted file mode 100644 index a19c077a5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.puml deleted file mode 100644 index 5b9bc9f1b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Get Full Path - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.svg deleted file mode 100644 index c9d9eb49c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - Sequence - Container levelCatalog ApiExternalExternalApiApiGet Full Path \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.png deleted file mode 100644 index 8e28e83ae..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.puml deleted file mode 100644 index 490a9204e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Get Full Path") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.svg deleted file mode 100644 index 71c884f39..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Full Path \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.png deleted file mode 100644 index 7af78d229..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.puml deleted file mode 100644 index a14893055..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.svg deleted file mode 100644 index bda8216d0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.png deleted file mode 100644 index 4533a192d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.puml deleted file mode 100644 index 125b9fefb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.svg deleted file mode 100644 index 91723d740..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.png deleted file mode 100644 index 92fb56f54..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.puml deleted file mode 100644 index 5ac1c2b65..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Get Full Path - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.svg deleted file mode 100644 index 4d5128350..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Full Path/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Full Path - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Full Path \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.png deleted file mode 100644 index 7d14a1f13..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.puml deleted file mode 100644 index 0fb914888..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Image Mime Type From Image File Extension") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.svg deleted file mode 100644 index 848685555..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Sequence - Component level«external_system»External«component»Catalog ApiGet Image Mime TypeFrom Image File Extension \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.png deleted file mode 100644 index af8c5f56e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.puml deleted file mode 100644 index c6106bfef..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.svg deleted file mode 100644 index d726ae0c2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.png deleted file mode 100644 index 1b8a1c839..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.puml deleted file mode 100644 index 356e8cf5f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.svg deleted file mode 100644 index 2e99cbe31..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.png deleted file mode 100644 index 72216efd1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.puml deleted file mode 100644 index 28b1e899a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Image Mime Type From Image File Extension - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.svg deleted file mode 100644 index 2d7e76040..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiGet Image Mime Type From Image File Extension \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.png deleted file mode 100644 index fd12b2ecf..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.puml deleted file mode 100644 index b16db640b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Get Image Mime Type From Image File Extension") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.svg deleted file mode 100644 index 679e3023b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Sequence - Container level«external_system»External«container»ApiGet Image Mime TypeFrom Image File Extension \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.png deleted file mode 100644 index d6b9cb9ba..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.puml deleted file mode 100644 index c3528bad8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.svg deleted file mode 100644 index 3e4219a60..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.png deleted file mode 100644 index 3a54e46dc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.puml deleted file mode 100644 index bd5ed5815..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.svg deleted file mode 100644 index 48f37f851..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.png deleted file mode 100644 index ea7d7ebe0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.puml deleted file mode 100644 index ba325b835..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Get Image Mime Type From Image File Extension - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.svg deleted file mode 100644 index e046838d1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - Sequence - Container levelCatalog ApiExternalExternalApiApiGet Image Mime Type From Image File Extension \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.png deleted file mode 100644 index 672653198..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.puml deleted file mode 100644 index d1589762d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Get Image Mime Type From Image File Extension") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.svg deleted file mode 100644 index ca2e788dc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Image Mime TypeFrom Image File Extension \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.png deleted file mode 100644 index 778d798c0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.puml deleted file mode 100644 index 351080d42..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.svg deleted file mode 100644 index 54d8748ca..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.png deleted file mode 100644 index cb5827348..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.puml deleted file mode 100644 index 02e8e553b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.svg deleted file mode 100644 index 645a4931b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.png deleted file mode 100644 index a96739ca3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.puml deleted file mode 100644 index 780e897ae..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Get Image Mime Type From Image File Extension - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.svg deleted file mode 100644 index a50a263aa..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Image Mime Type From Image File Extension/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Image Mime Type From Image File Extension - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Image Mime Type From Image File Extension \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.png deleted file mode 100644 index 4dc08c0b1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.puml deleted file mode 100644 index 73135edd9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Item By Id") -alt id <= 0 -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.BadRequest)") -end -alt item == null -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.NotFound)") -end -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.svg deleted file mode 100644 index 233e805fc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Sequence - Component level«external_system»External«component»Catalog ApiGet Item By Idalt[id <= 0]Return(TypedResults.BadRequest)alt[item == null]Return(TypedResults.NotFound)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.png deleted file mode 100644 index 4ec25619e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.puml deleted file mode 100644 index a50e5181b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.svg deleted file mode 100644 index a86e95452..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.png deleted file mode 100644 index 364dc3985..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.puml deleted file mode 100644 index b22353a4d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.svg deleted file mode 100644 index b6f3240ff..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.png deleted file mode 100644 index 6645849c2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.puml deleted file mode 100644 index f6b0b003a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.puml +++ /dev/null @@ -1,28 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Item By Id -group Get Item By Id -alt id <= 0 -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.BadRequest) -end -alt item == null -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.NotFound) -end -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.svg deleted file mode 100644 index 302472ed5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiGet Item By IdGet Item By Idalt[id <= 0]Return (TypedResults.BadRequest)alt[item == null]Return (TypedResults.NotFound)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.png deleted file mode 100644 index e1be80854..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.puml deleted file mode 100644 index 0247afc5a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Get Item By Id") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.svg deleted file mode 100644 index 78bd71682..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Sequence - Container level«external_system»External«container»ApiGet Item By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.png deleted file mode 100644 index dd5b41ce3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.puml deleted file mode 100644 index b37d5e4e0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.svg deleted file mode 100644 index 10955f0ed..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.png deleted file mode 100644 index 5244943c2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.puml deleted file mode 100644 index 4715c6dbe..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.svg deleted file mode 100644 index dc2173ac1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.png deleted file mode 100644 index e7dd1115c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.puml deleted file mode 100644 index b1fdfd831..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Get Item By Id - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.svg deleted file mode 100644 index b766c1cf4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - Sequence - Container levelCatalog ApiExternalExternalApiApiGet Item By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.png deleted file mode 100644 index 7e671ecc8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.puml deleted file mode 100644 index 070d9d493..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Get Item By Id") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.svg deleted file mode 100644 index 501cd2d98..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Item By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.png deleted file mode 100644 index 6b5d3d707..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.puml deleted file mode 100644 index 67e9f0511..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.svg deleted file mode 100644 index 70da5fdd9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.png deleted file mode 100644 index 6acd547fd..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.puml deleted file mode 100644 index 3f0b81470..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.svg deleted file mode 100644 index d53dbd5be..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.png deleted file mode 100644 index bdcab469e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.puml deleted file mode 100644 index d2776c221..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Get Item By Id - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.svg deleted file mode 100644 index 40d9f7a23..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item By Id/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item By Id - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Item By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.png deleted file mode 100644 index 3e135b3fb..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.puml deleted file mode 100644 index c4b4df194..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Item Picture By Id") -alt item is null -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.NotFound)") -end -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Full Path") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Image Mime Type From Image File Extension") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.PhysicalFile)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.svg deleted file mode 100644 index 29e91f05d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Sequence - Component level«external_system»External«component»Catalog ApiGet Item Picture By Idalt[item is null]Return(TypedResults.NotFound)Get Full PathGet Image Mime TypeFrom Image File ExtensionReturn(TypedResults.PhysicalFile) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.png deleted file mode 100644 index 0fefe2bf7..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.puml deleted file mode 100644 index 5c1aac7cb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.svg deleted file mode 100644 index 7f16348a8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.png deleted file mode 100644 index 971e26ca6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.puml deleted file mode 100644 index 54f7e5d72..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.svg deleted file mode 100644 index f68862325..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.png deleted file mode 100644 index cf48d44d4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.puml deleted file mode 100644 index 454721704..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Item Picture By Id -group Get Item Picture By Id -alt item is null -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.NotFound) -end -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Full Path -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Image Mime Type From Image File Extension -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.PhysicalFile) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.svg deleted file mode 100644 index 46f66ba31..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiGet Item Picture By IdGet Item Picture By Idalt[item is null]Return (TypedResults.NotFound)Get Full PathGet Image Mime Type From Image File ExtensionReturn (TypedResults.PhysicalFile) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.png deleted file mode 100644 index 64855532c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.puml deleted file mode 100644 index c3809a535..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Get Item Picture By Id") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.svg deleted file mode 100644 index 625442886..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Sequence - Container level«external_system»External«container»ApiGet Item Picture By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.png deleted file mode 100644 index 9a702d3e9..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.puml deleted file mode 100644 index 58925cdd1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.svg deleted file mode 100644 index 29b0dd4d1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.png deleted file mode 100644 index 0aeb155de..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.puml deleted file mode 100644 index 76c026bfa..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.svg deleted file mode 100644 index 09cc81e61..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.png deleted file mode 100644 index 1ca45fd0c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.puml deleted file mode 100644 index bfac9642f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Get Item Picture By Id - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.svg deleted file mode 100644 index 7283e8da6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - Sequence - Container levelCatalog ApiExternalExternalApiApiGet Item Picture By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.png deleted file mode 100644 index e850b1544..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.puml deleted file mode 100644 index 3d4ee75a0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Get Item Picture By Id") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.svg deleted file mode 100644 index d19e96104..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Item Picture By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.png deleted file mode 100644 index 6f544cdb5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.puml deleted file mode 100644 index 38297b57b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.svg deleted file mode 100644 index 52c6fe3d1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.png deleted file mode 100644 index 2923ea7ec..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.puml deleted file mode 100644 index 5bb0aa6cd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.svg deleted file mode 100644 index 9f6464074..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.png deleted file mode 100644 index c4537b737..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.puml deleted file mode 100644 index f0dff7c59..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Get Item Picture By Id - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.svg deleted file mode 100644 index b27246880..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Item Picture By Id/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Item Picture By Id - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Item Picture By Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.png deleted file mode 100644 index 1dd50d7e0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.puml deleted file mode 100644 index e93881db3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.puml +++ /dev/null @@ -1,21 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Items By Brand And Type Id") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.svg deleted file mode 100644 index a6a6364ce..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Sequence - Component level«external_system»External«component»Catalog ApiGet Items By Brand AndType IdChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.png deleted file mode 100644 index 93ecb3686..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.puml deleted file mode 100644 index 74aade929..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.svg deleted file mode 100644 index 5b60660d1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.png deleted file mode 100644 index 7ee2087f3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.puml deleted file mode 100644 index 2f0c52af2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.svg deleted file mode 100644 index b8845daa3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.png deleted file mode 100644 index 9639f01bc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.puml deleted file mode 100644 index 2f32da518..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.puml +++ /dev/null @@ -1,26 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Items By Brand And Type Id -group Get Items By Brand And Type Id -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder -group Change Uri Placeholder -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) -end -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.svg deleted file mode 100644 index 10e37df2f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiGet Items By Brand And Type IdGet Items By Brand And Type IdChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.png deleted file mode 100644 index b5216cb26..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.puml deleted file mode 100644 index 53e38ddbb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Get Items By Brand And Type Id") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.svg deleted file mode 100644 index fbc097e91..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Sequence - Container level«external_system»External«container»ApiGet Items By Brand AndType Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.png deleted file mode 100644 index 5e7e88f8d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.puml deleted file mode 100644 index 6d10bbf5f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.svg deleted file mode 100644 index 3fed5d079..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.png deleted file mode 100644 index ccfb72fb2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.puml deleted file mode 100644 index a528ff790..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.svg deleted file mode 100644 index 14a010546..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.png deleted file mode 100644 index 5f9c77f07..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.puml deleted file mode 100644 index 362076d73..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Get Items By Brand And Type Id - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.svg deleted file mode 100644 index 405b97655..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - Sequence - Container levelCatalog ApiExternalExternalApiApiGet Items By Brand And Type Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.png deleted file mode 100644 index 75ab5ec21..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.puml deleted file mode 100644 index 17ef89f43..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Get Items By Brand And Type Id") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.svg deleted file mode 100644 index 1e2db8ce3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Items By Brand AndType Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.png deleted file mode 100644 index af5207234..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.puml deleted file mode 100644 index d1108fc61..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.svg deleted file mode 100644 index 79dec1563..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.png deleted file mode 100644 index 1eb019ca6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.puml deleted file mode 100644 index 5fbf49d1c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.svg deleted file mode 100644 index a307354d5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.png deleted file mode 100644 index fa68aba58..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.puml deleted file mode 100644 index c970a8b92..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Get Items By Brand And Type Id - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.svg deleted file mode 100644 index 0876f3ef0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand And Type Id/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand And Type Id - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Items By Brand And Type Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.png deleted file mode 100644 index 8342da2a8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.puml deleted file mode 100644 index 386a5e6d7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.puml +++ /dev/null @@ -1,21 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Items By Brand Id") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.svg deleted file mode 100644 index be9c5625c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Sequence - Component level«external_system»External«component»Catalog ApiGet Items By Brand IdChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.png deleted file mode 100644 index 155c3a388..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.puml deleted file mode 100644 index cc681117b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.svg deleted file mode 100644 index 81a9f9529..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.png deleted file mode 100644 index 509933640..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.puml deleted file mode 100644 index 212206c07..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.svg deleted file mode 100644 index bc280b951..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.png deleted file mode 100644 index 1029a910d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.puml deleted file mode 100644 index 4814efeb1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.puml +++ /dev/null @@ -1,26 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Items By Brand Id -group Get Items By Brand Id -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder -group Change Uri Placeholder -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) -end -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.svg deleted file mode 100644 index 22bda3e0e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiGet Items By Brand IdGet Items By Brand IdChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.png deleted file mode 100644 index 321404a66..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.puml deleted file mode 100644 index aa54111f1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Get Items By Brand Id") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.svg deleted file mode 100644 index 9d181aab6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Sequence - Container level«external_system»External«container»ApiGet Items By Brand Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.png deleted file mode 100644 index b0e06415e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.puml deleted file mode 100644 index 5a77636ea..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.svg deleted file mode 100644 index fe40c8714..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.png deleted file mode 100644 index b3e5f8269..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.puml deleted file mode 100644 index a37f9b971..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.svg deleted file mode 100644 index a471ddf0e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.png deleted file mode 100644 index b9dbb3638..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.puml deleted file mode 100644 index e6c3b1ad7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Get Items By Brand Id - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.svg deleted file mode 100644 index 5eb4c68e4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - Sequence - Container levelCatalog ApiExternalExternalApiApiGet Items By Brand Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.png deleted file mode 100644 index 76af3501a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.puml deleted file mode 100644 index 332227d3e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Get Items By Brand Id") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.svg deleted file mode 100644 index 6560cae3e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Items By Brand Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.png deleted file mode 100644 index 468fe31c5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.puml deleted file mode 100644 index 8fa8ca3f2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.svg deleted file mode 100644 index 7eefc56fc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.png deleted file mode 100644 index 16cb730a9..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.puml deleted file mode 100644 index 08004a3cc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.svg deleted file mode 100644 index ca9399ac0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.png deleted file mode 100644 index a1fdc38c5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.puml deleted file mode 100644 index d7006fed0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Get Items By Brand Id - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.svg deleted file mode 100644 index 44df2dcda..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Brand Id/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Brand Id - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Items By Brand Id \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.png deleted file mode 100644 index 2802f6202..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.puml deleted file mode 100644 index dd4279723..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.puml +++ /dev/null @@ -1,26 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Items By Ids") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.svg deleted file mode 100644 index 1d1e01df1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextGet Items By IdsCatalog Items To ListAsyncChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.png deleted file mode 100644 index c75612f2b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.puml deleted file mode 100644 index 90f2f0aa6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.svg deleted file mode 100644 index ce94a07e7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.png deleted file mode 100644 index 104e8a592..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.puml deleted file mode 100644 index e99de7448..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.svg deleted file mode 100644 index c6ff208eb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.png deleted file mode 100644 index b3c0bb008..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.puml deleted file mode 100644 index 6f35917c7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.puml +++ /dev/null @@ -1,32 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Items By Ids -group Get Items By Ids -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder -group Change Uri Placeholder -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) -end -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.svg deleted file mode 100644 index 8dcfc633c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextGet Items By IdsGet Items By IdsCatalog Items To List AsyncChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.png deleted file mode 100644 index d71a7a954..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.puml deleted file mode 100644 index cd05846c7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.puml +++ /dev/null @@ -1,17 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Get Items By Ids") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.svg deleted file mode 100644 index 493b78d26..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureGet Items By IdsCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.png deleted file mode 100644 index e2b704d8f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.puml deleted file mode 100644 index 6f70e6c57..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.svg deleted file mode 100644 index 33f9dad35..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.png deleted file mode 100644 index 0e7c9f3bb..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.puml deleted file mode 100644 index 5d6011371..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.svg deleted file mode 100644 index b6b34c66a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.png deleted file mode 100644 index 2173ef64c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.puml deleted file mode 100644 index f9bef4db4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Get Items By Ids -group Get Items By Ids -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.svg deleted file mode 100644 index eaa9904c7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureGet Items By IdsGet Items By IdsCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.png deleted file mode 100644 index 02a90f44c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.puml deleted file mode 100644 index a2bdba384..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Get Items By Ids") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.svg deleted file mode 100644 index 9d87fb6b9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Items By Ids \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.png deleted file mode 100644 index 5565a4dd8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.puml deleted file mode 100644 index a0b367ea9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.svg deleted file mode 100644 index 6343cf1a6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.png deleted file mode 100644 index 043978ed8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.puml deleted file mode 100644 index 33b0502a5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.svg deleted file mode 100644 index fbcb5d083..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.png deleted file mode 100644 index e3cc2dead..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.puml deleted file mode 100644 index 3be5253de..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Get Items By Ids - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.svg deleted file mode 100644 index 3953c5933..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Ids/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Ids - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Items By Ids \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.png deleted file mode 100644 index cfda56ce2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.puml deleted file mode 100644 index 1c263f8bf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.puml +++ /dev/null @@ -1,26 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Items By Name") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.svg deleted file mode 100644 index a0a41fd33..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextGet Items By NameCatalog Items To ListAsyncChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.png deleted file mode 100644 index 3448f53d8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.puml deleted file mode 100644 index ec6fc505e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.svg deleted file mode 100644 index f67f64da2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.png deleted file mode 100644 index d774832fb..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.puml deleted file mode 100644 index 2859ac6df..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.svg deleted file mode 100644 index e954b48d5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.png deleted file mode 100644 index bb050edb6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.puml deleted file mode 100644 index a34db5962..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.puml +++ /dev/null @@ -1,32 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Items By Name -group Get Items By Name -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder -group Change Uri Placeholder -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) -end -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.svg deleted file mode 100644 index bb971c5a9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextGet Items By NameGet Items By NameCatalog Items To List AsyncChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.png deleted file mode 100644 index 339ea7b59..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.puml deleted file mode 100644 index 18954a7a1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.puml +++ /dev/null @@ -1,17 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Get Items By Name") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.svg deleted file mode 100644 index 816112008..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureGet Items By NameCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.png deleted file mode 100644 index 94c7ac839..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.puml deleted file mode 100644 index e858e7243..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.svg deleted file mode 100644 index d7f2a3faf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.png deleted file mode 100644 index 2eead1a79..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.puml deleted file mode 100644 index 7b5aae710..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.svg deleted file mode 100644 index bd79690b0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.png deleted file mode 100644 index 22a2caecc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.puml deleted file mode 100644 index 5898ef7ac..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Get Items By Name -group Get Items By Name -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.svg deleted file mode 100644 index 03f07ffe5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureGet Items By NameGet Items By NameCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.png deleted file mode 100644 index 3ffedc7a2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.puml deleted file mode 100644 index 5ff9aa6c0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Get Items By Name") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.svg deleted file mode 100644 index e4563d0a2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Items By Name \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.png deleted file mode 100644 index eaa601819..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.puml deleted file mode 100644 index 7daa1729f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.svg deleted file mode 100644 index 7be8438e5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.png deleted file mode 100644 index b8f3d961c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.puml deleted file mode 100644 index b3b6f2b70..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.svg deleted file mode 100644 index 22d29f856..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.png deleted file mode 100644 index b8879c209..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.puml deleted file mode 100644 index 9c8b3bb36..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Get Items By Name - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.svg deleted file mode 100644 index 61c834282..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Name/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Name - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Items By Name \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.png deleted file mode 100644 index 2c2ea908a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.puml deleted file mode 100644 index 434411ae6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.puml +++ /dev/null @@ -1,37 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Items By Semantic Relevance") -alt !services.CatalogAI.IsEnabled -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Get Items By Name") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") -end -alt services.Logger.IsEnabled(LogLevel.Debug) -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") -else -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") -end -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Change Uri Placeholder") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (items)") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Ok)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.svg deleted file mode 100644 index f26f48908..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextGet Items By SemanticRelevancealt[!services.CatalogAI.IsEnabled]Get Items By NameCatalog Items To ListAsyncChange Uri PlaceholderReturn (items)Return (TypedResults.Ok)alt[services.Logger.IsEnabled(LogLevel.Debug)]Catalog Items To ListAsyncCatalog Items To ListAsyncChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.png deleted file mode 100644 index 6a1689776..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.puml deleted file mode 100644 index 5fadf75c0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.svg deleted file mode 100644 index b35484fec..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.png deleted file mode 100644 index 07ddc6b97..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.puml deleted file mode 100644 index 2dfb27f55..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.svg deleted file mode 100644 index 13384dfff..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.png deleted file mode 100644 index c06bab30b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.puml deleted file mode 100644 index b05bef9bb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.puml +++ /dev/null @@ -1,47 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Items By Semantic Relevance -group Get Items By Semantic Relevance -alt !services.CatalogAI.IsEnabled -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Get Items By Name -group Get Items By Name -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder -group Change Uri Placeholder -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) -end -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) -end -end -alt services.Logger.IsEnabled(LogLevel.Debug) -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async -else -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async -end -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Change Uri Placeholder -group Change Uri Placeholder -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (items) -end -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Ok) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.svg deleted file mode 100644 index d99d31b27..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextGet Items By Semantic RelevanceGet Items By Semantic Relevancealt[!services.CatalogAI.IsEnabled]Get Items By NameGet Items By NameCatalog Items To List AsyncChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok)alt[services.Logger.IsEnabled(LogLevel.Debug)]Catalog Items To List AsyncCatalog Items To List AsyncChange Uri PlaceholderChange Uri PlaceholderReturn (items)Return (TypedResults.Ok) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.png deleted file mode 100644 index 4e11eb8cf..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.puml deleted file mode 100644 index 288c6b2a5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Get Items By Semantic Relevance") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.svg deleted file mode 100644 index 8ffcc5a76..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureGet Items By SemanticRelevanceCatalog Items To ListAsyncCatalog Items To ListAsyncCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.png deleted file mode 100644 index 6238c11ba..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.puml deleted file mode 100644 index 9c66df0b3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.svg deleted file mode 100644 index 5edb867ce..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.png deleted file mode 100644 index 8b8b94dee..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.puml deleted file mode 100644 index f44ba24ab..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.svg deleted file mode 100644 index 8c2b4a3aa..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.png deleted file mode 100644 index 782cee00d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.puml deleted file mode 100644 index b268499fa..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.puml +++ /dev/null @@ -1,21 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Get Items By Semantic Relevance -group Get Items By Semantic Relevance -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.svg deleted file mode 100644 index 700535ce6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureGet Items By Semantic RelevanceGet Items By Semantic RelevanceCatalog Items To List AsyncCatalog Items To List AsyncCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.png deleted file mode 100644 index d9d815aa8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.puml deleted file mode 100644 index a060377b7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Get Items By Semantic Relevance") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.svg deleted file mode 100644 index 83ed194c4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Sequence - Context level«external_system»External«system»Catalog ApiGet Items By SemanticRelevance \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.png deleted file mode 100644 index 93fa63b14..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.puml deleted file mode 100644 index 99d3c8187..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.svg deleted file mode 100644 index 15d36f9be..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.png deleted file mode 100644 index c83e3987e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.puml deleted file mode 100644 index 9f18442d6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.svg deleted file mode 100644 index e3e439f4e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.png deleted file mode 100644 index 303edccfb..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.puml deleted file mode 100644 index 93207bef9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Get Items By Semantic Relevance - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.svg deleted file mode 100644 index bcdcf782e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Get Items By Semantic Relevance/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Get Items By Semantic Relevance - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiGet Items By Semantic Relevance \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.png deleted file mode 100644 index 185c3a753..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.puml deleted file mode 100644 index 31a524314..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Map Catalog Api") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (app)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.svg deleted file mode 100644 index 05c3ea94d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Sequence - Component level«external_system»External«component»Catalog ApiMap Catalog ApiReturn (app) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.png deleted file mode 100644 index dbdd6aeb3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.puml deleted file mode 100644 index 62fa0f8c2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.svg deleted file mode 100644 index edb12d8c0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Static - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.png deleted file mode 100644 index 1883e1ac3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.puml deleted file mode 100644 index b4db99fd5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.svg deleted file mode 100644 index 9267c4579..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 - Component levelCatalog Api[System]Api[Container]Catalog ApiLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.png deleted file mode 100644 index 464fb869d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.puml deleted file mode 100644 index 9cb86cde1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.puml +++ /dev/null @@ -1,22 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Map Catalog Api -group Map Catalog Api -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (app) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.svg deleted file mode 100644 index 23f1fb0a6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - Sequence - Component levelApiExternalExternalCatalog ApiCatalog ApiMap Catalog ApiMap Catalog ApiReturn (app) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.png deleted file mode 100644 index d8b8de39b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.puml deleted file mode 100644 index f3434cc05..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Map Catalog Api") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.svg deleted file mode 100644 index 7b0542f35..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Sequence - Container level«external_system»External«container»ApiMap Catalog Api \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.png deleted file mode 100644 index 8b9b9cc49..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.puml deleted file mode 100644 index 0647efabd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.svg deleted file mode 100644 index 98b98eac8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Static - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.png deleted file mode 100644 index c171e2bc9..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.puml deleted file mode 100644 index fa1cd6d37..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.svg deleted file mode 100644 index 46ec11538..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 - Container levelCatalog Api[System]ApiLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.png deleted file mode 100644 index 7adbbf6dc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.puml deleted file mode 100644 index ea44d5c85..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Map Catalog Api - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.svg deleted file mode 100644 index 670016fe1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - Sequence - Container levelCatalog ApiExternalExternalApiApiMap Catalog Api \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.png deleted file mode 100644 index 32744ab8f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.puml deleted file mode 100644 index 02866079a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Map Catalog Api") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.svg deleted file mode 100644 index 7d9b82f82..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Sequence - Context level«external_system»External«system»Catalog ApiMap Catalog Api \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.png deleted file mode 100644 index db8b6a9d1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.puml deleted file mode 100644 index eb4c90ecf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.svg deleted file mode 100644 index 051be8921..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.png deleted file mode 100644 index 017f4c0c3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.puml deleted file mode 100644 index ebd4ba857..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.svg deleted file mode 100644 index 971046265..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.png deleted file mode 100644 index b6b158bd8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.puml deleted file mode 100644 index 6330044de..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Map Catalog Api - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.svg deleted file mode 100644 index 7fdd1df16..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Map Catalog Api/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Map Catalog Api - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiMap Catalog Api \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.png deleted file mode 100644 index d4dde5474..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.puml deleted file mode 100644 index 50a1c4e04..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -Boundary_End() - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Update Item") -alt catalogItem == null -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.NotFound)") -end -alt priceEntry.IsModified -else -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Save Changes Async") -end -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Return (TypedResults.Created)") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.svg deleted file mode 100644 index baeb7c146..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Api[Container]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 Sequence - Component level«external_system»External«component»Catalog Api«component»Catalog ContextUpdate Itemalt[catalogItem == null]Return(TypedResults.NotFound)alt[priceEntry.IsModified]Save Changes AsyncReturn(TypedResults.Created) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.png deleted file mode 100644 index 463e8347e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.puml deleted file mode 100644 index f8fbf1eb3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.svg deleted file mode 100644 index 34247872d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 Static - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.png deleted file mode 100644 index a52dea6cf..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.puml deleted file mode 100644 index 998431648..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Save Changes Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.svg deleted file mode 100644 index 74ea0fade..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 - Component levelCatalog Api[System]Api[Container]Infrastructure[Container]Catalog ApiCatalog ContextSave Changes AsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.png deleted file mode 100644 index 5f70304a4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.puml deleted file mode 100644 index 9547069c0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.puml +++ /dev/null @@ -1,34 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Api" #White - participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -end box - - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Update Item -group Update Item -alt catalogItem == null -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.NotFound) -end -alt priceEntry.IsModified -else -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Save Changes Async -end -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi : Return (TypedResults.Created) -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.svg deleted file mode 100644 index 053f19cb7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - Sequence - Component levelApiInfrastructureExternalExternalCatalog ApiCatalog ApiCatalog ContextCatalog ContextUpdate ItemUpdate Itemalt[catalogItem == null]Return (TypedResults.NotFound)alt[priceEntry.IsModified]Save Changes AsyncReturn (TypedResults.Created) \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.png deleted file mode 100644 index 7fd69db84..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.puml deleted file mode 100644 index 7ddd15bdf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.puml +++ /dev/null @@ -1,17 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Update Item") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Save Changes Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.svg deleted file mode 100644 index 8dcb1cdc5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 Sequence - Container level«external_system»External«container»Api«container»InfrastructureUpdate ItemSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.png deleted file mode 100644 index a2083c5cd..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.puml deleted file mode 100644 index 5b18b92ba..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.svg deleted file mode 100644 index 23053060f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.png deleted file mode 100644 index e1ae8b544..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.puml deleted file mode 100644 index 10735675f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Save Changes Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.svg deleted file mode 100644 index 2f272b316..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 - Container levelCatalog Api[System]ApiInfrastructureSave Changes AsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.png deleted file mode 100644 index 98f667d83..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.puml deleted file mode 100644 index 36244495f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api : Update Item -group Update Item -dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Save Changes Async -end - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.svg deleted file mode 100644 index 63df7addc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - Sequence - Container levelCatalog ApiExternalExternalApiApiInfrastructureInfrastructureUpdate ItemUpdate ItemSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.png deleted file mode 100644 index c62b1228b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.puml deleted file mode 100644 index 2b15def7d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Update Item") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.svg deleted file mode 100644 index 7c036cf0c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 Sequence - Context level«external_system»External«system»Catalog ApiUpdate Item \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.png deleted file mode 100644 index f45eafb59..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.puml deleted file mode 100644 index cda1a7516..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.svg deleted file mode 100644 index 45c042e00..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.png deleted file mode 100644 index 2efdaafb7..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.puml deleted file mode 100644 index 5e5c5aba3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.svg deleted file mode 100644 index 3abe2e1e4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.png deleted file mode 100644 index 4b79b5a53..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.puml deleted file mode 100644 index e1d340140..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Update Item - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.svg deleted file mode 100644 index e3f6fae55..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Components/Catalog Api/Interfaces/Update Item/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - Catalog Api - Update Item - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiUpdate Item \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.png deleted file mode 100644 index eaadca901..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.puml deleted file mode 100644 index dae7452e2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.svg deleted file mode 100644 index b6db0489b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - C4 Static - Container levelCatalog Api[System]ApiInfrastructureUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4.png deleted file mode 100644 index 538fa1f07..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4.puml deleted file mode 100644 index 641a98607..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4.puml +++ /dev/null @@ -1,29 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Api - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4.svg deleted file mode 100644 index 3f7b56ef8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Api/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Api - C4 - Container levelCatalog Api[System]ApiInfrastructureCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.png deleted file mode 100644 index a74b0bc8a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.puml deleted file mode 100644 index 0d7b41f8f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.svg deleted file mode 100644 index c8af9e36c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.png deleted file mode 100644 index 7d4366d58..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.puml deleted file mode 100644 index e58101a15..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.svg deleted file mode 100644 index fe0b39a44..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.png deleted file mode 100644 index 8c958649b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.puml deleted file mode 100644 index ccaa48a43..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.svg deleted file mode 100644 index 2bd209e5f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.png deleted file mode 100644 index 5372bf687..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.puml deleted file mode 100644 index 1012fca5e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.svg deleted file mode 100644 index 26ec7c6bb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.png deleted file mode 100644 index 03d69963c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.puml deleted file mode 100644 index fe6e09c05..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands Add") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.svg deleted file mode 100644 index debaa6337..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.png deleted file mode 100644 index cc962b9f7..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.puml deleted file mode 100644 index e9ff987e6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.svg deleted file mode 100644 index 3ded36eed..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.png deleted file mode 100644 index 72214fad2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.puml deleted file mode 100644 index 61a2bcfd0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.svg deleted file mode 100644 index a9d1a61d4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.png deleted file mode 100644 index f7e17992d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.puml deleted file mode 100644 index b57bfef9b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands Add - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.svg deleted file mode 100644 index 5c172122a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.png deleted file mode 100644 index 51a395f5b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.puml deleted file mode 100644 index c3f601d94..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands Add") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.svg deleted file mode 100644 index c30af9b7f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.png deleted file mode 100644 index e58a49f40..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.puml deleted file mode 100644 index 7eb4873c3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.svg deleted file mode 100644 index a77c732d1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.png deleted file mode 100644 index 7b1560f73..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.puml deleted file mode 100644 index f75b3d82d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.svg deleted file mode 100644 index 4d284ff8a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.png deleted file mode 100644 index da30ec316..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.puml deleted file mode 100644 index e68bcd091..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands Add - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.svg deleted file mode 100644 index 7b00d98f1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.png deleted file mode 100644 index 91a672597..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.puml deleted file mode 100644 index bfc69de76..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Brands Add") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.svg deleted file mode 100644 index 85db1527a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.png deleted file mode 100644 index 22fd4d2f8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.puml deleted file mode 100644 index 0bbf25524..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.svg deleted file mode 100644 index 8eb5bfe41..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.png deleted file mode 100644 index ea6ba5d3c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.puml deleted file mode 100644 index f600555f9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.svg deleted file mode 100644 index f2b39c3eb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.png deleted file mode 100644 index f3e7ec712..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.puml deleted file mode 100644 index 157cefee8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Brands Add - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.svg deleted file mode 100644 index 9cbea3c5f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Add/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Add - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.png deleted file mode 100644 index e00adad57..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.puml deleted file mode 100644 index 3672346b8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands Any Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.svg deleted file mode 100644 index 6ebe20b94..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.png deleted file mode 100644 index 11a5a6b3c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.puml deleted file mode 100644 index bc18a2490..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.svg deleted file mode 100644 index f7832b19f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.png deleted file mode 100644 index cf8374d14..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.puml deleted file mode 100644 index 0de67f0a5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.svg deleted file mode 100644 index bf4ff7451..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.png deleted file mode 100644 index c2a23641c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.puml deleted file mode 100644 index ea71c0318..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands Any Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.svg deleted file mode 100644 index 340cfba6e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.png deleted file mode 100644 index acf93cf42..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.puml deleted file mode 100644 index d046e5cd9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands Any Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.svg deleted file mode 100644 index c14af3adb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.png deleted file mode 100644 index 672dfec8a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.puml deleted file mode 100644 index d627b4dc7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.svg deleted file mode 100644 index c74b27b46..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.png deleted file mode 100644 index 7f39c8ee7..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.puml deleted file mode 100644 index c9cb2159e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.svg deleted file mode 100644 index 5061f6611..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.png deleted file mode 100644 index b109b8cac..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.puml deleted file mode 100644 index 6518b83ba..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands Any Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.svg deleted file mode 100644 index 4a8a538ab..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.png deleted file mode 100644 index 4e56beba9..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.puml deleted file mode 100644 index 1f9083149..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Brands Any Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.svg deleted file mode 100644 index df1c10165..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.png deleted file mode 100644 index cba6e545e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.puml deleted file mode 100644 index e7af2d751..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.svg deleted file mode 100644 index 7bce75433..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.png deleted file mode 100644 index e464e3495..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.puml deleted file mode 100644 index 0bd507790..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.svg deleted file mode 100644 index e8c1eaa1f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.png deleted file mode 100644 index 921a557cc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.puml deleted file mode 100644 index 87975f645..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Brands Any Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.svg deleted file mode 100644 index 6b5a9fd35..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Any Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Any Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.png deleted file mode 100644 index 31b50ab1a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.puml deleted file mode 100644 index 20a2e390c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands As Queryable") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.svg deleted file mode 100644 index eed97ea33..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.png deleted file mode 100644 index 8d62609bb..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.puml deleted file mode 100644 index 70a491903..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.svg deleted file mode 100644 index 2f33bed86..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.png deleted file mode 100644 index 4fa511b6a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.puml deleted file mode 100644 index d6e559004..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.svg deleted file mode 100644 index 9b98714f0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.png deleted file mode 100644 index 1db158c5c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.puml deleted file mode 100644 index 529beaf87..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands As Queryable - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.svg deleted file mode 100644 index 7e6e8bef9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.png deleted file mode 100644 index 2b06b1313..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.puml deleted file mode 100644 index 3bec3f025..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands As Queryable") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.svg deleted file mode 100644 index e53c7d692..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.png deleted file mode 100644 index 153e77249..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.puml deleted file mode 100644 index 2b16656b0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.svg deleted file mode 100644 index a373a0bfb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.png deleted file mode 100644 index c3c3f1ee3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.puml deleted file mode 100644 index 71d2140ec..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.svg deleted file mode 100644 index adcdccd92..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.png deleted file mode 100644 index 13a9ba30a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.puml deleted file mode 100644 index ae03c895f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands As Queryable - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.svg deleted file mode 100644 index ad48c3ef6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.png deleted file mode 100644 index 147a1e2a9..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.puml deleted file mode 100644 index f88a45a9b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Brands As Queryable") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.svg deleted file mode 100644 index 2fbddc14a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.png deleted file mode 100644 index ec5ca873a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.puml deleted file mode 100644 index 5ae3a84be..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.svg deleted file mode 100644 index 0be0849eb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.png deleted file mode 100644 index 3d484e65e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.puml deleted file mode 100644 index 7072208a4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.svg deleted file mode 100644 index 24b701a68..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.png deleted file mode 100644 index a452aa589..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.puml deleted file mode 100644 index e28495be2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Brands As Queryable - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.svg deleted file mode 100644 index c6397cae1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands As Queryable/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands As Queryable - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.png deleted file mode 100644 index 407cb9cbc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.puml deleted file mode 100644 index a4f81dc9d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands Find Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.svg deleted file mode 100644 index 6bfe8612c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands FindAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.png deleted file mode 100644 index 68fe4f3f1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.puml deleted file mode 100644 index 2d2a148f7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.svg deleted file mode 100644 index 01980d244..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.png deleted file mode 100644 index 2b37368ce..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.puml deleted file mode 100644 index 8dc771561..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.svg deleted file mode 100644 index 1b561c751..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.png deleted file mode 100644 index 7c07eee79..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.puml deleted file mode 100644 index 5f31c3201..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands Find Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.svg deleted file mode 100644 index 77e6fda0b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.png deleted file mode 100644 index 39dd6649f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.puml deleted file mode 100644 index cb58fa8c2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands Find Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.svg deleted file mode 100644 index ea34b1660..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands FindAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.png deleted file mode 100644 index 82c6f2f40..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.puml deleted file mode 100644 index b6a3f37c0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.svg deleted file mode 100644 index 649adcb89..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.png deleted file mode 100644 index 175b970e9..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.puml deleted file mode 100644 index 718bf2392..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.svg deleted file mode 100644 index 9285d434e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.png deleted file mode 100644 index 3311002bd..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.puml deleted file mode 100644 index 1ca20a760..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands Find Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.svg deleted file mode 100644 index a4a1523a8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.png deleted file mode 100644 index d8b1c3e85..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.puml deleted file mode 100644 index a9f070b8f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Brands Find Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.svg deleted file mode 100644 index 71d51ee68..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands FindAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.png deleted file mode 100644 index e012f75f5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.puml deleted file mode 100644 index e207e12db..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.svg deleted file mode 100644 index bcc4ea5bb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.png deleted file mode 100644 index b36aad672..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.puml deleted file mode 100644 index ce3ae1c05..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.svg deleted file mode 100644 index e8b45643a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.png deleted file mode 100644 index 5ec348c24..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.puml deleted file mode 100644 index f11747658..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Brands Find Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.svg deleted file mode 100644 index cb3d13128..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Find Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Find Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.png deleted file mode 100644 index 273f06545..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.puml deleted file mode 100644 index 7b726eca7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands First Or Default Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.svg deleted file mode 100644 index cb3161bbd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.png deleted file mode 100644 index 86f146eb5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.puml deleted file mode 100644 index 6bae48043..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.svg deleted file mode 100644 index 56e6e15a6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.png deleted file mode 100644 index 1b26b4d1d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.puml deleted file mode 100644 index 4dc86f223..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.svg deleted file mode 100644 index 6d142d92a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.png deleted file mode 100644 index 915bf8ec4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.puml deleted file mode 100644 index 6028de355..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands First Or Default Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.svg deleted file mode 100644 index 4afe76906..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.png deleted file mode 100644 index 1e8a57207..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.puml deleted file mode 100644 index 80f8fffa3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands First Or Default Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.svg deleted file mode 100644 index 8409f11b8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.png deleted file mode 100644 index fe3769c30..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.puml deleted file mode 100644 index e633c534b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.svg deleted file mode 100644 index 3952f4ed8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.png deleted file mode 100644 index fe40dceb1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.puml deleted file mode 100644 index a0401db3c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.svg deleted file mode 100644 index 8c5920a6c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.png deleted file mode 100644 index 168c8717a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.puml deleted file mode 100644 index 1f475f6da..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands First Or Default Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.svg deleted file mode 100644 index 87b1dfd03..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.png deleted file mode 100644 index 24326ee95..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.puml deleted file mode 100644 index f5ef45f29..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Brands First Or Default Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.svg deleted file mode 100644 index 023fbfed9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.png deleted file mode 100644 index 18a6e376d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.puml deleted file mode 100644 index 6be7ef68a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.svg deleted file mode 100644 index 8588270e0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.png deleted file mode 100644 index e29042a96..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.puml deleted file mode 100644 index d4404bb13..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.svg deleted file mode 100644 index 2145b573d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.png deleted file mode 100644 index 4126ebcfe..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.puml deleted file mode 100644 index 5242196bc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Brands First Or Default Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.svg deleted file mode 100644 index 3f297e394..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands First Or Default Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands First Or Default Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.png deleted file mode 100644 index ce550bc53..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.puml deleted file mode 100644 index 24b6230f3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands Remove") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.svg deleted file mode 100644 index 3c5a4eaa1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.png deleted file mode 100644 index 7b8d9fa60..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.puml deleted file mode 100644 index 478bff3b3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.svg deleted file mode 100644 index 9e69f4024..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.png deleted file mode 100644 index 423101b16..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.puml deleted file mode 100644 index 2a9c64c67..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.svg deleted file mode 100644 index 23ebe3204..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.png deleted file mode 100644 index 47bf824e1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.puml deleted file mode 100644 index ef9086d9a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands Remove - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.svg deleted file mode 100644 index ebc539a7a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.png deleted file mode 100644 index 168ea67d6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.puml deleted file mode 100644 index 21f9c4aa1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands Remove") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.svg deleted file mode 100644 index 7837656f8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.png deleted file mode 100644 index e21b1bae2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.puml deleted file mode 100644 index 7a65b6d37..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.svg deleted file mode 100644 index 0b85284f0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.png deleted file mode 100644 index 48e40487d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.puml deleted file mode 100644 index f1c7ad1b4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.svg deleted file mode 100644 index 12060dd68..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.png deleted file mode 100644 index 6ca1c29b8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.puml deleted file mode 100644 index 199a215bb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands Remove - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.svg deleted file mode 100644 index f8b2c7330..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.png deleted file mode 100644 index a01bf142a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.puml deleted file mode 100644 index 2d665890f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Brands Remove") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.svg deleted file mode 100644 index ba7881ff2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.png deleted file mode 100644 index 69d402738..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.puml deleted file mode 100644 index 41f3e2f73..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.svg deleted file mode 100644 index 1cdfe8397..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.png deleted file mode 100644 index 22870d7fd..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.puml deleted file mode 100644 index 2fdea0977..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.svg deleted file mode 100644 index 4c4be753b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.png deleted file mode 100644 index 484aeb242..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.puml deleted file mode 100644 index 6ea8a7653..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Brands Remove - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.svg deleted file mode 100644 index 592331064..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Remove/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Remove - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.png deleted file mode 100644 index 3a5d75314..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.puml deleted file mode 100644 index 9a03f8069..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands Single Or Default") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.svg deleted file mode 100644 index ef919959e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.png deleted file mode 100644 index 4d5b27d1a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.puml deleted file mode 100644 index baf8a0349..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.svg deleted file mode 100644 index 4b8fecbbc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.png deleted file mode 100644 index 5a1e43dcf..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.puml deleted file mode 100644 index 40dfa76fa..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.svg deleted file mode 100644 index e4ffa6453..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.png deleted file mode 100644 index 532187fec..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.puml deleted file mode 100644 index 77ff5b2ed..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands Single Or Default - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.svg deleted file mode 100644 index 7fff11152..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.png deleted file mode 100644 index bbe82e2aa..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.puml deleted file mode 100644 index 83c27a0c2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands Single Or Default") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.svg deleted file mode 100644 index fee65ce0d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.png deleted file mode 100644 index ea6315da4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.puml deleted file mode 100644 index 1a0933d6a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.svg deleted file mode 100644 index f6946d9d7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.png deleted file mode 100644 index 914314527..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.puml deleted file mode 100644 index 83f00a012..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.svg deleted file mode 100644 index 616a016e0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.png deleted file mode 100644 index 2d66b28cd..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.puml deleted file mode 100644 index aa06421f4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands Single Or Default - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.svg deleted file mode 100644 index a312e0fd8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.png deleted file mode 100644 index ce9c51256..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.puml deleted file mode 100644 index 88861ebac..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Brands Single Or Default") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.svg deleted file mode 100644 index 34b0fbf5b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.png deleted file mode 100644 index 29714670b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.puml deleted file mode 100644 index 5554b9ae1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.svg deleted file mode 100644 index 632810e74..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.png deleted file mode 100644 index 6cfda3daa..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.puml deleted file mode 100644 index 15c214505..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.svg deleted file mode 100644 index 8b601de05..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.png deleted file mode 100644 index 499f2a3e5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.puml deleted file mode 100644 index 1cbd9dbc6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Brands Single Or Default - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.svg deleted file mode 100644 index a8455ceb6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands Single Or Default/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands Single Or Default - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.png deleted file mode 100644 index 54146e2fc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.puml deleted file mode 100644 index 855e73c5f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Brands To List Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.svg deleted file mode 100644 index 59f4d5524..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Brands To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.png deleted file mode 100644 index aaaaebf0d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.puml deleted file mode 100644 index 1358f89ca..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.svg deleted file mode 100644 index 760d72497..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.png deleted file mode 100644 index 3eccc52ba..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.puml deleted file mode 100644 index 840cd2fd0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.svg deleted file mode 100644 index 2cc64b682..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.png deleted file mode 100644 index 0213f34d0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.puml deleted file mode 100644 index 43e54f789..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Brands To List Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.svg deleted file mode 100644 index bf8bc2f0d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Brands To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.png deleted file mode 100644 index 142fe7e3f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.puml deleted file mode 100644 index f7934f202..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Brands To List Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.svg deleted file mode 100644 index b0cf4b099..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Brands To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.png deleted file mode 100644 index d905543b6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.puml deleted file mode 100644 index 0bd9ae89a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.svg deleted file mode 100644 index 65519647d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.png deleted file mode 100644 index a61ba3f47..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.puml deleted file mode 100644 index a5fa5b789..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.svg deleted file mode 100644 index e3bd40817..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.png deleted file mode 100644 index 995ae7f12..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.puml deleted file mode 100644 index 20c315abb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Brands To List Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.svg deleted file mode 100644 index 324b13b80..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Brands To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.png deleted file mode 100644 index e23c53681..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.puml deleted file mode 100644 index 82c27c1ea..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Brands To List Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.svg deleted file mode 100644 index 47802ce14..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Brands To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.png deleted file mode 100644 index dee45988b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.puml deleted file mode 100644 index 558db1438..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.svg deleted file mode 100644 index b06438534..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.png deleted file mode 100644 index a84a5d322..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.puml deleted file mode 100644 index ca2eb35f6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.svg deleted file mode 100644 index 564957c5c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.png deleted file mode 100644 index 30040c126..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.puml deleted file mode 100644 index d98d2744c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Brands To List Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.svg deleted file mode 100644 index c1cf19f26..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Brands To List Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Brands To List Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Brands To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.png deleted file mode 100644 index 627e63ebd..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.puml deleted file mode 100644 index fd20644d4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.svg deleted file mode 100644 index 911466f0b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.png deleted file mode 100644 index a4af3c2a0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.puml deleted file mode 100644 index 48e67840a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.svg deleted file mode 100644 index b607bcff0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.png deleted file mode 100644 index 2006c4742..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.puml deleted file mode 100644 index d1bdcc6fc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.svg deleted file mode 100644 index 6a61208c7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.png deleted file mode 100644 index 1ee6f7c93..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.puml deleted file mode 100644 index 01301a463..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Add - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.svg deleted file mode 100644 index 80840177a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.png deleted file mode 100644 index afb5325a8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.puml deleted file mode 100644 index 7cf5f321d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.svg deleted file mode 100644 index 1549819cc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.png deleted file mode 100644 index 3e9489fc2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.puml deleted file mode 100644 index ac92264fa..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.svg deleted file mode 100644 index 3de6cf6e9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.png deleted file mode 100644 index a2efbaba4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.puml deleted file mode 100644 index 403fe9b65..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.svg deleted file mode 100644 index bab9cab4d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.png deleted file mode 100644 index 51e1b31c6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.puml deleted file mode 100644 index c3fe63618..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Add - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.svg deleted file mode 100644 index 65217d10e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.png deleted file mode 100644 index a6eed9f17..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.puml deleted file mode 100644 index 124707a77..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Items Add") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.svg deleted file mode 100644 index e7a540975..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.png deleted file mode 100644 index 5466c5b47..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.puml deleted file mode 100644 index 55d5116df..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.svg deleted file mode 100644 index 716216bd9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.png deleted file mode 100644 index d68f9254d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.puml deleted file mode 100644 index 0df83ad5e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.svg deleted file mode 100644 index 669ec6cf0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.png deleted file mode 100644 index 2ef7774ee..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.puml deleted file mode 100644 index fad928a8a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Items Add - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.svg deleted file mode 100644 index 3e39f06b6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Add/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Add - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.png deleted file mode 100644 index bb0035ae4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.puml deleted file mode 100644 index dfaff39c0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Any Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.svg deleted file mode 100644 index df68770b4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.png deleted file mode 100644 index b4eaf91b0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.puml deleted file mode 100644 index 9a4944d3a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.svg deleted file mode 100644 index ed237477a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.png deleted file mode 100644 index 64d0901f6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.puml deleted file mode 100644 index 419be03bd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.svg deleted file mode 100644 index 0d2f0301d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.png deleted file mode 100644 index 567606c61..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.puml deleted file mode 100644 index 56e3cf5a6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Any Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.svg deleted file mode 100644 index 3d74ebc0a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.png deleted file mode 100644 index c44218fd5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.puml deleted file mode 100644 index a7966e50a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Any Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.svg deleted file mode 100644 index bf286f34f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.png deleted file mode 100644 index c5c0bcbe5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.puml deleted file mode 100644 index d7a964ee9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.svg deleted file mode 100644 index e52de8f08..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.png deleted file mode 100644 index 9cf13cab5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.puml deleted file mode 100644 index b7369cd31..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.svg deleted file mode 100644 index a1305b2b4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.png deleted file mode 100644 index 60a74ac29..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.puml deleted file mode 100644 index 75a05baa8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Any Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.svg deleted file mode 100644 index 68d7eb383..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.png deleted file mode 100644 index 0c5fee35a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.puml deleted file mode 100644 index 7159b9030..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Items Any Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.svg deleted file mode 100644 index f892a6833..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.png deleted file mode 100644 index 1542dcb6f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.puml deleted file mode 100644 index aa457a83c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.svg deleted file mode 100644 index f53f97f72..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.png deleted file mode 100644 index c5fb0a695..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.puml deleted file mode 100644 index 9dd0c3487..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.svg deleted file mode 100644 index 99c3e373e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.png deleted file mode 100644 index bde4dbe23..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.puml deleted file mode 100644 index 1fd6957fd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Items Any Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.svg deleted file mode 100644 index 706d5b0d3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Any Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Any Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.png deleted file mode 100644 index 3d44ebf97..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.puml deleted file mode 100644 index 441ea94bf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items As Queryable") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.svg deleted file mode 100644 index caf7b1164..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.png deleted file mode 100644 index ed560b8e0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.puml deleted file mode 100644 index a2b70eaa3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.svg deleted file mode 100644 index 9e4252ace..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.png deleted file mode 100644 index be6d14361..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.puml deleted file mode 100644 index f8750f1ce..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.svg deleted file mode 100644 index 69ff2061e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.png deleted file mode 100644 index 7496d051d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.puml deleted file mode 100644 index 2681e6c30..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items As Queryable - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.svg deleted file mode 100644 index f8b8f33d5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.png deleted file mode 100644 index 1412273b3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.puml deleted file mode 100644 index ba8c58368..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items As Queryable") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.svg deleted file mode 100644 index 2129a4079..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.png deleted file mode 100644 index b86f73ccb..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.puml deleted file mode 100644 index 0b8d8d24f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.svg deleted file mode 100644 index c53342611..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.png deleted file mode 100644 index 1841b3b0c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.puml deleted file mode 100644 index 5745da184..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.svg deleted file mode 100644 index c591ff445..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.png deleted file mode 100644 index f18f7e986..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.puml deleted file mode 100644 index 2dc1bab13..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items As Queryable - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.svg deleted file mode 100644 index c4db5cce5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.png deleted file mode 100644 index be46f7335..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.puml deleted file mode 100644 index 1bd9c2bfc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Items As Queryable") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.svg deleted file mode 100644 index 523117e05..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.png deleted file mode 100644 index f9699d466..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.puml deleted file mode 100644 index dda0b76ff..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.svg deleted file mode 100644 index 06fe051ad..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.png deleted file mode 100644 index d046a9ba0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.puml deleted file mode 100644 index bc01fd740..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.svg deleted file mode 100644 index b0f7e3d81..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.png deleted file mode 100644 index 5eb34cb7a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.puml deleted file mode 100644 index 700267d19..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Items As Queryable - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.svg deleted file mode 100644 index ab219360b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items As Queryable/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items As Queryable - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.png deleted file mode 100644 index 4dfc0813d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.puml deleted file mode 100644 index 53d09d415..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Find Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.svg deleted file mode 100644 index 45481bbf8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.png deleted file mode 100644 index 3931f1317..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.puml deleted file mode 100644 index a557def4f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.svg deleted file mode 100644 index 832ba33b5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.png deleted file mode 100644 index 5e91b0555..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.puml deleted file mode 100644 index d18eeec73..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.svg deleted file mode 100644 index 47c3d79ad..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.png deleted file mode 100644 index 1be282659..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.puml deleted file mode 100644 index d0521925d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Find Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.svg deleted file mode 100644 index c867c5898..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.png deleted file mode 100644 index 2699a9b8c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.puml deleted file mode 100644 index 0ff721b54..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Find Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.svg deleted file mode 100644 index a73f4a000..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.png deleted file mode 100644 index 1f750540d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.puml deleted file mode 100644 index 787299ea1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.svg deleted file mode 100644 index 49eb71480..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.png deleted file mode 100644 index f36a7d9b5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.puml deleted file mode 100644 index 123efab53..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.svg deleted file mode 100644 index f212e2cd6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.png deleted file mode 100644 index 57f48d95e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.puml deleted file mode 100644 index 1a752926e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Find Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.png deleted file mode 100644 index 7e065f21e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.puml deleted file mode 100644 index b12997e1e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Items Find Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.svg deleted file mode 100644 index 9834ed030..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.png deleted file mode 100644 index 085ef4f67..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.puml deleted file mode 100644 index 4e8917079..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.svg deleted file mode 100644 index e1c915324..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.png deleted file mode 100644 index 5e82b1421..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.puml deleted file mode 100644 index 837a41f97..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.svg deleted file mode 100644 index e6cf64fb6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.png deleted file mode 100644 index 727e73003..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.puml deleted file mode 100644 index a76a6ed7e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Items Find Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.svg deleted file mode 100644 index d5c693f6c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Find Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Find Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.png deleted file mode 100644 index d4040a1ff..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.puml deleted file mode 100644 index 3fb7a6fa7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items First Or Default Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.svg deleted file mode 100644 index 28adb46f1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.png deleted file mode 100644 index 62f09af93..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.puml deleted file mode 100644 index 018882181..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.svg deleted file mode 100644 index a94dd86fc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.png deleted file mode 100644 index 22a19124e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.puml deleted file mode 100644 index a61a9b806..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.svg deleted file mode 100644 index 49bba7b04..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.png deleted file mode 100644 index f99497035..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.puml deleted file mode 100644 index 53938f5f7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items First Or Default Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.svg deleted file mode 100644 index d8200e511..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.png deleted file mode 100644 index f5abccee0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.puml deleted file mode 100644 index 32fbc8577..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items First Or Default Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.svg deleted file mode 100644 index 2501c6cb1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.png deleted file mode 100644 index 370e5aef4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.puml deleted file mode 100644 index 387f4413b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.svg deleted file mode 100644 index 0c216892a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.png deleted file mode 100644 index 16e13e8f3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.puml deleted file mode 100644 index 8f1e2752b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.svg deleted file mode 100644 index 2b0fde901..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.png deleted file mode 100644 index 63f1c7166..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.puml deleted file mode 100644 index 05a34e783..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items First Or Default Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.svg deleted file mode 100644 index 8081fe082..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.png deleted file mode 100644 index 5c7c24a0a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.puml deleted file mode 100644 index 522182967..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Items First Or Default Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.svg deleted file mode 100644 index 9d3403b09..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.png deleted file mode 100644 index 92de209e5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.puml deleted file mode 100644 index 7a0031a7f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.svg deleted file mode 100644 index 4cc684650..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.png deleted file mode 100644 index 4063510ba..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.puml deleted file mode 100644 index ecc77cc03..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.svg deleted file mode 100644 index 435533acc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.png deleted file mode 100644 index c31ab8b81..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.puml deleted file mode 100644 index ef0a2f869..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Items First Or Default Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.svg deleted file mode 100644 index 0b731c01e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items First Or Default Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items First Or Default Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.png deleted file mode 100644 index 503f258e6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.puml deleted file mode 100644 index 9f0441c4f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Remove") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.svg deleted file mode 100644 index e00112b63..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.png deleted file mode 100644 index c1fa45e6a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.puml deleted file mode 100644 index efd3fe31d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.svg deleted file mode 100644 index 44af2f9f7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.png deleted file mode 100644 index 50ff5538e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.puml deleted file mode 100644 index 1950f9f48..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.svg deleted file mode 100644 index ed2507df8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.png deleted file mode 100644 index 8fad2f793..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.puml deleted file mode 100644 index 391b1c36e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Remove - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.svg deleted file mode 100644 index d7e6096d2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.png deleted file mode 100644 index 4d3c1b4cd..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.puml deleted file mode 100644 index bf7211165..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Remove") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.svg deleted file mode 100644 index c9e8ba278..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.png deleted file mode 100644 index 1841de8a9..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.puml deleted file mode 100644 index ae7deabbe..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.svg deleted file mode 100644 index b5ad52d52..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.png deleted file mode 100644 index 4075d441b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.puml deleted file mode 100644 index e865e54f6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.svg deleted file mode 100644 index 60f1e616c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.png deleted file mode 100644 index f03f0374c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.puml deleted file mode 100644 index 9de79f95d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Remove - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.svg deleted file mode 100644 index 81436b51f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.png deleted file mode 100644 index 4c51f982b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.puml deleted file mode 100644 index 83ec8a3e1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Items Remove") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.svg deleted file mode 100644 index 0371a8b9b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.png deleted file mode 100644 index f13a84945..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.puml deleted file mode 100644 index 93c0888d4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.svg deleted file mode 100644 index e730070b2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.png deleted file mode 100644 index 64f02fc2f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.puml deleted file mode 100644 index 0be9318c8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.svg deleted file mode 100644 index bbf07e45a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.png deleted file mode 100644 index 5e2e3f9a7..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.puml deleted file mode 100644 index 3e586eac1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Items Remove - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.svg deleted file mode 100644 index da9d90b1d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Remove/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Remove - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.png deleted file mode 100644 index 09fbd7665..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.puml deleted file mode 100644 index 8057c1046..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Single Or Default") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.svg deleted file mode 100644 index 4690259e3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.png deleted file mode 100644 index 6c9b572e1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.puml deleted file mode 100644 index c9319f1fd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.svg deleted file mode 100644 index 1eb32c839..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.png deleted file mode 100644 index 83eed76ed..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.puml deleted file mode 100644 index e6df4b6de..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.svg deleted file mode 100644 index 4ed0cc438..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.png deleted file mode 100644 index 604ae624c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.puml deleted file mode 100644 index c0b0b144c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items Single Or Default - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.svg deleted file mode 100644 index 4a4c5109e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.png deleted file mode 100644 index 17e50e86f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.puml deleted file mode 100644 index ae1f7f973..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Single Or Default") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.svg deleted file mode 100644 index 44fd3314f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.png deleted file mode 100644 index ca8e4ac60..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.puml deleted file mode 100644 index ead6a19eb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.svg deleted file mode 100644 index a6c864444..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.png deleted file mode 100644 index 6f81e8149..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.puml deleted file mode 100644 index 7784d5607..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.svg deleted file mode 100644 index 84d925125..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.png deleted file mode 100644 index 6ae606171..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.puml deleted file mode 100644 index 630d3b768..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items Single Or Default - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.svg deleted file mode 100644 index ab8af7701..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.png deleted file mode 100644 index 1037e0319..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.puml deleted file mode 100644 index 30048a044..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Items Single Or Default") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.svg deleted file mode 100644 index 5f9948778..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.png deleted file mode 100644 index 801c49ee6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.puml deleted file mode 100644 index a16f9d484..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.svg deleted file mode 100644 index df45858bd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.png deleted file mode 100644 index 003d082d4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.puml deleted file mode 100644 index 593a51151..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.svg deleted file mode 100644 index 547c6a2b7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.png deleted file mode 100644 index 7c1327482..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.puml deleted file mode 100644 index e03fc8df9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Items Single Or Default - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.svg deleted file mode 100644 index 1d3a555ff..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items Single Or Default/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items Single Or Default - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.png deleted file mode 100644 index 7ec5c06f6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.puml deleted file mode 100644 index ac9f990d4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items To List Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.svg deleted file mode 100644 index f3d2c1dc7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.png deleted file mode 100644 index a97f7e82c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.puml deleted file mode 100644 index f97dace15..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.svg deleted file mode 100644 index 5fa420a6e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.png deleted file mode 100644 index a595816bd..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.puml deleted file mode 100644 index d487af6b9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.svg deleted file mode 100644 index 496143082..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.png deleted file mode 100644 index b6ca9cbb7..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.puml deleted file mode 100644 index 4849387f5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Items To List Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.svg deleted file mode 100644 index 03d97a91d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.png deleted file mode 100644 index 1bec14479..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.puml deleted file mode 100644 index 188d5a44b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items To List Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.svg deleted file mode 100644 index c3711ed3c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.png deleted file mode 100644 index 8bf6c34e5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.puml deleted file mode 100644 index 08a3d801d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.svg deleted file mode 100644 index 73336748f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.png deleted file mode 100644 index ecd797112..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.puml deleted file mode 100644 index 7bf181f8c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.svg deleted file mode 100644 index ebc06242d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.png deleted file mode 100644 index b4782be8f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.puml deleted file mode 100644 index b1aa4efb6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Items To List Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.svg deleted file mode 100644 index 60813d59b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.png deleted file mode 100644 index d737268f4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.puml deleted file mode 100644 index 95ed9be3f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Items To List Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.svg deleted file mode 100644 index 9d2362606..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Items To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.png deleted file mode 100644 index 9fe127778..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.puml deleted file mode 100644 index 84ea7a5d9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.svg deleted file mode 100644 index 85073325f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.png deleted file mode 100644 index c4227d9e9..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.puml deleted file mode 100644 index e782aac63..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.svg deleted file mode 100644 index 5a7584360..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.png deleted file mode 100644 index a793c17da..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.puml deleted file mode 100644 index 7f142c691..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Items To List Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.svg deleted file mode 100644 index 80204c601..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Items To List Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Items To List Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Items To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.png deleted file mode 100644 index 9c556f060..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.puml deleted file mode 100644 index fed830452..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types Add") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.svg deleted file mode 100644 index b5ddb1e5c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.png deleted file mode 100644 index b8b1e63de..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.puml deleted file mode 100644 index 0268ccebe..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.svg deleted file mode 100644 index 230ec0ece..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.png deleted file mode 100644 index 014b27335..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.puml deleted file mode 100644 index 07a357a8a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.svg deleted file mode 100644 index c5f0f423e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.png deleted file mode 100644 index 23d028967..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.puml deleted file mode 100644 index 10cb780c0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types Add - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.svg deleted file mode 100644 index 5fd89d292..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.png deleted file mode 100644 index 4b9ee03f2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.puml deleted file mode 100644 index cba85dab6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types Add") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.svg deleted file mode 100644 index 773daf30a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.png deleted file mode 100644 index 8d76e7bd7..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.puml deleted file mode 100644 index a721a1856..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.svg deleted file mode 100644 index e5ce1fbf1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.png deleted file mode 100644 index 85b1b98a9..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.puml deleted file mode 100644 index c2a91a188..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.svg deleted file mode 100644 index 2548e723a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.png deleted file mode 100644 index 3c6147315..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.puml deleted file mode 100644 index ac2626744..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types Add - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.svg deleted file mode 100644 index 97c946544..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.png deleted file mode 100644 index eb40d6dda..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.puml deleted file mode 100644 index b42f91ae3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Types Add") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.svg deleted file mode 100644 index a5e1384b1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.png deleted file mode 100644 index 716ec1a1a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.puml deleted file mode 100644 index 0028aa435..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.svg deleted file mode 100644 index 84bc40711..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.png deleted file mode 100644 index cffa13b03..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.puml deleted file mode 100644 index a01500553..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.svg deleted file mode 100644 index b52803f71..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.png deleted file mode 100644 index 18b6bdf2d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.puml deleted file mode 100644 index 1ba39b876..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Types Add - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.svg deleted file mode 100644 index 4b51d8eec..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Add/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Add - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types Add \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.png deleted file mode 100644 index e7b1e5487..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.puml deleted file mode 100644 index bd28635ec..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types Any Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.svg deleted file mode 100644 index d22deb647..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.png deleted file mode 100644 index 21a78a6e1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.puml deleted file mode 100644 index 199622b2c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.svg deleted file mode 100644 index 9db210092..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.png deleted file mode 100644 index 03b61ebfc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.puml deleted file mode 100644 index c13f61101..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.svg deleted file mode 100644 index 269afa3ad..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.png deleted file mode 100644 index 0a155b2e6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.puml deleted file mode 100644 index 975768670..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types Any Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.svg deleted file mode 100644 index 4d26f22b9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.png deleted file mode 100644 index f9f09125d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.puml deleted file mode 100644 index 18d0b9661..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types Any Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.svg deleted file mode 100644 index 8b7cda039..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.png deleted file mode 100644 index b0f2effa3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.puml deleted file mode 100644 index 5119f9f89..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.svg deleted file mode 100644 index 4b5a1c43e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.png deleted file mode 100644 index f3f451c73..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.puml deleted file mode 100644 index 1caed6c3d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.svg deleted file mode 100644 index 7080e02f3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.png deleted file mode 100644 index 7f58141ae..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.puml deleted file mode 100644 index 156dd97e3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types Any Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.svg deleted file mode 100644 index 67c81d1df..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.png deleted file mode 100644 index 74823f2de..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.puml deleted file mode 100644 index 7e5dc9ad3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Types Any Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.svg deleted file mode 100644 index baa65a466..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.png deleted file mode 100644 index be241c6e4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.puml deleted file mode 100644 index 6b25e8edd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.svg deleted file mode 100644 index 3782f40ba..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.png deleted file mode 100644 index dc0349f4f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.puml deleted file mode 100644 index 2755a732f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.svg deleted file mode 100644 index 003f07ada..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.png deleted file mode 100644 index 148ef535d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.puml deleted file mode 100644 index f8f5ebc29..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Types Any Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.svg deleted file mode 100644 index c44d91bf4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Any Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Any Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types Any Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.png deleted file mode 100644 index 55a296fc6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.puml deleted file mode 100644 index 2ae34c3e2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types As Queryable") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.svg deleted file mode 100644 index 231788343..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.png deleted file mode 100644 index 03fafec7c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.puml deleted file mode 100644 index 4120e8b4d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.svg deleted file mode 100644 index 33834c677..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.png deleted file mode 100644 index 9596cfae8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.puml deleted file mode 100644 index 7a8cfd156..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.svg deleted file mode 100644 index fda4b3cbe..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.png deleted file mode 100644 index 49d94fab6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.puml deleted file mode 100644 index 0115344e3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types As Queryable - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.svg deleted file mode 100644 index 1b6bb7453..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.png deleted file mode 100644 index e0793fbcc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.puml deleted file mode 100644 index 3661fcf1a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types As Queryable") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.svg deleted file mode 100644 index f7d0d2818..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.png deleted file mode 100644 index 67baab4ac..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.puml deleted file mode 100644 index b43747662..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.svg deleted file mode 100644 index 995841a8c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.png deleted file mode 100644 index 1019fac9d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.puml deleted file mode 100644 index b3bc185a6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.svg deleted file mode 100644 index 852be9bfc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.png deleted file mode 100644 index 2fe4b1aab..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.puml deleted file mode 100644 index 3aa7bde72..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types As Queryable - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.svg deleted file mode 100644 index 295249ca7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.png deleted file mode 100644 index 631301a36..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.puml deleted file mode 100644 index 3557b2bbd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Types As Queryable") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.svg deleted file mode 100644 index 44d121539..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types AsQueryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.png deleted file mode 100644 index d6d5725b1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.puml deleted file mode 100644 index 328867fad..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.svg deleted file mode 100644 index e2d25a21a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.png deleted file mode 100644 index 76c2e5b25..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.puml deleted file mode 100644 index 7b3c5976a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.svg deleted file mode 100644 index ee65e8f00..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.png deleted file mode 100644 index c42b50701..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.puml deleted file mode 100644 index 200037e4a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Types As Queryable - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.svg deleted file mode 100644 index 8d6a828a2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types As Queryable/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types As Queryable - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types As Queryable \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.png deleted file mode 100644 index 2af6d4864..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.puml deleted file mode 100644 index 084311fd5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types Find Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.svg deleted file mode 100644 index e5ecd9898..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.png deleted file mode 100644 index 8a54aac90..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.puml deleted file mode 100644 index e07431c84..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.svg deleted file mode 100644 index 6a498d2db..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.png deleted file mode 100644 index d9e95e229..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.puml deleted file mode 100644 index 652141223..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.svg deleted file mode 100644 index 1d9a36887..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.png deleted file mode 100644 index c55f77795..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.puml deleted file mode 100644 index 18bce5eb6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types Find Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.svg deleted file mode 100644 index ab1405bdd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.png deleted file mode 100644 index 795b6d070..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.puml deleted file mode 100644 index ee0ef27fe..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types Find Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.svg deleted file mode 100644 index bc57471f1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.png deleted file mode 100644 index d433e4957..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.puml deleted file mode 100644 index 7adab7af3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.svg deleted file mode 100644 index 7fcd199ee..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.png deleted file mode 100644 index 64d77280b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.puml deleted file mode 100644 index 5c7c432d7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.svg deleted file mode 100644 index 6f4fd3361..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.png deleted file mode 100644 index e0a8226d3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.puml deleted file mode 100644 index 5a59cff14..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types Find Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.svg deleted file mode 100644 index 9f91fd337..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.png deleted file mode 100644 index 44586bb95..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.puml deleted file mode 100644 index eb5257d48..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Types Find Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.svg deleted file mode 100644 index 86a4e9adb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.png deleted file mode 100644 index 68e62902a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.puml deleted file mode 100644 index b03561e39..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.svg deleted file mode 100644 index 8f20c0553..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.png deleted file mode 100644 index 8494e841f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.puml deleted file mode 100644 index 506b5c764..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.svg deleted file mode 100644 index 7cc7cb05a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.png deleted file mode 100644 index a961cab18..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.puml deleted file mode 100644 index 2fa7b7acb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Types Find Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.svg deleted file mode 100644 index 88e361db2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Find Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Find Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types Find Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.png deleted file mode 100644 index eb724d72a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.puml deleted file mode 100644 index 5bdb0dc5f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types First Or Default Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.svg deleted file mode 100644 index 8ee81d76e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.png deleted file mode 100644 index b4adb6223..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.puml deleted file mode 100644 index 93db534d1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.svg deleted file mode 100644 index 01fd8e09a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.png deleted file mode 100644 index b6fcba495..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.puml deleted file mode 100644 index 0d7970a93..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.svg deleted file mode 100644 index 7c0133d15..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.png deleted file mode 100644 index 6fa90b00a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.puml deleted file mode 100644 index 11d1061c2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types First Or Default Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.svg deleted file mode 100644 index 021af4c61..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.png deleted file mode 100644 index daeba4876..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.puml deleted file mode 100644 index bab460c51..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types First Or Default Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.svg deleted file mode 100644 index b02c99c3d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.png deleted file mode 100644 index 424b1fa00..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.puml deleted file mode 100644 index fa11b3eef..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.svg deleted file mode 100644 index 4f1a5044d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.png deleted file mode 100644 index 528d1b197..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.puml deleted file mode 100644 index 6d07abc90..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.svg deleted file mode 100644 index 2f8102186..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.png deleted file mode 100644 index 32c7ccd46..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.puml deleted file mode 100644 index 8b258554a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types First Or Default Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.svg deleted file mode 100644 index 87e7e031a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.png deleted file mode 100644 index ea294851d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.puml deleted file mode 100644 index 2d2d056af..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Types First Or Default Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.svg deleted file mode 100644 index ed4fbb988..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types First OrDefault Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.png deleted file mode 100644 index 851196092..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.puml deleted file mode 100644 index 58d06e762..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.svg deleted file mode 100644 index e9cc88c44..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.png deleted file mode 100644 index c7c667b0a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.puml deleted file mode 100644 index 5857d8e01..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.svg deleted file mode 100644 index b44fefc43..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.png deleted file mode 100644 index b35d9331d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.puml deleted file mode 100644 index 5d2409dd8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Types First Or Default Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.svg deleted file mode 100644 index 61330e9e6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types First Or Default Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types First Or Default Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types First Or Default Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.png deleted file mode 100644 index 3dc98acf0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.puml deleted file mode 100644 index 0e9d6edc5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types Remove") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.svg deleted file mode 100644 index 9d0aab3a1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.png deleted file mode 100644 index c482d7147..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.puml deleted file mode 100644 index 2390e2161..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.svg deleted file mode 100644 index 3f5b2719f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.png deleted file mode 100644 index 7072cbaa4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.puml deleted file mode 100644 index 582c67894..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.svg deleted file mode 100644 index 5f66700cc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.png deleted file mode 100644 index 6189f7734..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.puml deleted file mode 100644 index c674ed9f5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types Remove - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.svg deleted file mode 100644 index 46037e557..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.png deleted file mode 100644 index 288a01408..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.puml deleted file mode 100644 index be74d5f2b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types Remove") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.svg deleted file mode 100644 index dfa9f4962..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.png deleted file mode 100644 index caa902f8f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.puml deleted file mode 100644 index 93d1d4a55..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.svg deleted file mode 100644 index 50eef8922..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.png deleted file mode 100644 index 5b97f345f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.puml deleted file mode 100644 index 663c19564..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.svg deleted file mode 100644 index 69d3b1a83..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.png deleted file mode 100644 index 3882dae16..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.puml deleted file mode 100644 index f62d058b2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types Remove - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.svg deleted file mode 100644 index 03db6408f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.png deleted file mode 100644 index e5d37f7f3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.puml deleted file mode 100644 index d8862c736..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Types Remove") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.svg deleted file mode 100644 index 28503b416..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.png deleted file mode 100644 index f52216b91..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.puml deleted file mode 100644 index 717d9f7bd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.svg deleted file mode 100644 index 4055e7504..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.png deleted file mode 100644 index 0664f1c51..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.puml deleted file mode 100644 index fba515ccc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.svg deleted file mode 100644 index d69cfa5ef..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.png deleted file mode 100644 index 75fb9fe35..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.puml deleted file mode 100644 index 47509eeb1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Types Remove - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.svg deleted file mode 100644 index 5f925a56d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Remove/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Remove - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types Remove \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.png deleted file mode 100644 index 62f2b8877..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.puml deleted file mode 100644 index 5c29653b8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types Single Or Default") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.svg deleted file mode 100644 index d49fc8f3d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.png deleted file mode 100644 index eee33404d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.puml deleted file mode 100644 index 9b74c0c1c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.svg deleted file mode 100644 index 545503efe..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.png deleted file mode 100644 index 69682b29a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.puml deleted file mode 100644 index 8c04eea2d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.svg deleted file mode 100644 index b7c8ff332..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.png deleted file mode 100644 index bac1896d9..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.puml deleted file mode 100644 index e41708d3b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types Single Or Default - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.svg deleted file mode 100644 index a9281ca96..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.png deleted file mode 100644 index a554ce095..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.puml deleted file mode 100644 index 7ac593808..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types Single Or Default") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.svg deleted file mode 100644 index 5e6da9c74..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.png deleted file mode 100644 index e4762ea6b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.puml deleted file mode 100644 index fe48f2ad4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.svg deleted file mode 100644 index e5b29f897..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.png deleted file mode 100644 index c79cbe2e8..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.puml deleted file mode 100644 index 45666f674..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.svg deleted file mode 100644 index 1f8ec0ce6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.png deleted file mode 100644 index 8e7fd5dfe..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.puml deleted file mode 100644 index ee6f712a4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types Single Or Default - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.svg deleted file mode 100644 index d73c96984..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.png deleted file mode 100644 index 9ad95c5cd..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.puml deleted file mode 100644 index a3e5f6460..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Types Single Or Default") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.svg deleted file mode 100644 index 83f3a5dcd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types Single OrDefault \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.png deleted file mode 100644 index 99089c724..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.puml deleted file mode 100644 index e107ef7d4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.svg deleted file mode 100644 index 2fa107d28..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.png deleted file mode 100644 index 22833abf4..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.puml deleted file mode 100644 index af23a98c8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.svg deleted file mode 100644 index 35f3dab24..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.png deleted file mode 100644 index 48efd8bd1..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.puml deleted file mode 100644 index ca542ab8c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Types Single Or Default - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.svg deleted file mode 100644 index 637a3e10b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types Single Or Default/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types Single Or Default - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types Single Or Default \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.png deleted file mode 100644 index e6914829e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.puml deleted file mode 100644 index 7461ad863..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Types To List Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.svg deleted file mode 100644 index dadd857c7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextCatalog Types To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.png deleted file mode 100644 index 0c1a4570b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.puml deleted file mode 100644 index dbc433cc2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.svg deleted file mode 100644 index 548cdfbde..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.png deleted file mode 100644 index 2da964166..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.puml deleted file mode 100644 index ee9504025..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.svg deleted file mode 100644 index e322e9d6e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.png deleted file mode 100644 index 505070a1e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.puml deleted file mode 100644 index 8ac6b9250..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Catalog Types To List Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.svg deleted file mode 100644 index 9dd481f82..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextCatalog Types To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.png deleted file mode 100644 index d480aa781..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.puml deleted file mode 100644 index 7972430ae..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Types To List Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.svg deleted file mode 100644 index b27beb223..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Sequence - Container level«external_system»External«container»InfrastructureCatalog Types To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.png deleted file mode 100644 index eb78ebef5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.puml deleted file mode 100644 index 33dbbb5dd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.svg deleted file mode 100644 index 11de5baae..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.png deleted file mode 100644 index 69ca23fd2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.puml deleted file mode 100644 index 5f74c4e7b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.svg deleted file mode 100644 index f715ceb7a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.png deleted file mode 100644 index afe75cdab..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.puml deleted file mode 100644 index e213fb33f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Catalog Types To List Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.svg deleted file mode 100644 index 7a65ed908..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureCatalog Types To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.png deleted file mode 100644 index b7523332b..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.puml deleted file mode 100644 index 4cc1eaaec..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Types To List Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.svg deleted file mode 100644 index 3746de1d1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiCatalog Types To ListAsync \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.png deleted file mode 100644 index 2fc54365a..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.puml deleted file mode 100644 index f49c63807..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.svg deleted file mode 100644 index 186387762..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.png deleted file mode 100644 index 2654e02cb..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.puml deleted file mode 100644 index fcee41118..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.svg deleted file mode 100644 index 02f631844..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.png deleted file mode 100644 index 4acd13465..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.puml deleted file mode 100644 index 2068280de..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Catalog Types To List Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.svg deleted file mode 100644 index a8b21ea16..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Catalog Types To List Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Catalog Types To List Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiCatalog Types To List Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.png deleted file mode 100644 index 25a1da7a0..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.puml deleted file mode 100644 index d6bb18609..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.puml +++ /dev/null @@ -1,18 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Sequence - Component level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -Boundary_End() -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Save Changes Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.svg deleted file mode 100644 index 6e7b431c5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]Infrastructure[Container]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Sequence - Component level«external_system»External«component»Catalog ContextSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.png deleted file mode 100644 index 09714a987..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.puml deleted file mode 100644 index 9e2b87a01..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.svg deleted file mode 100644 index 4aab5aecf..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Static - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.png deleted file mode 100644 index 4615bb80d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.puml deleted file mode 100644 index be7b03ba1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.puml +++ /dev/null @@ -1,30 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.svg deleted file mode 100644 index f1de37fc1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 - Component levelCatalog Api[System]Infrastructure[Container]Catalog ContextLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.png deleted file mode 100644 index 3edb01d8f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.puml deleted file mode 100644 index c62d5729b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.puml +++ /dev/null @@ -1,19 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - Sequence - Component level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - -box "Infrastructure" #White - participant "Catalog Context" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext -end box - -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext : Save Changes Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.svg deleted file mode 100644 index 362fbe217..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Component - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - Sequence - Component levelInfrastructureExternalExternalCatalog ContextCatalog ContextSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.png deleted file mode 100644 index 1dab8c711..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.puml deleted file mode 100644 index 1519e52c4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Sequence - Container level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -Boundary_End() - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Save Changes Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.svg deleted file mode 100644 index ab28c4c9b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -Catalog Api[System]dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Sequence - Container level«external_system»External«container»InfrastructureSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.png deleted file mode 100644 index 083e7f847..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.puml deleted file mode 100644 index 0a51430c8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.svg deleted file mode 100644 index e6d2fdbfb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.png deleted file mode 100644 index 78f90a9f3..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.puml deleted file mode 100644 index 78c81ccc2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.svg deleted file mode 100644 index 33cb5abce..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.png deleted file mode 100644 index adf3dfbfc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.puml deleted file mode 100644 index 342299e41..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.puml +++ /dev/null @@ -1,15 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - Sequence - Container level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem - -box "Catalog Api" #White - participant "Infrastructure" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure -end box - - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure : Save Changes Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.svg deleted file mode 100644 index d0b43cce2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Container - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - Sequence - Container levelCatalog ApiExternalExternalInfrastructureInfrastructureSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.png deleted file mode 100644 index d88d3f9b6..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.puml deleted file mode 100644 index a16bac6ea..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.puml +++ /dev/null @@ -1,12 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Sequence.puml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Sequence - Context level - -System_Ext(C4InterFlow.SoftwareSystems.ExternalSystem, "External", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - -Rel(C4InterFlow.SoftwareSystems.ExternalSystem, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Save Changes Async") - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.svg deleted file mode 100644 index 408162149..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Sequence - Context level«external_system»External«system»Catalog ApiSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.png deleted file mode 100644 index dd2b526ff..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.puml deleted file mode 100644 index 3c16e11d5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.svg deleted file mode 100644 index 4a2a17caa..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.png deleted file mode 100644 index 8daf66b0d..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.puml deleted file mode 100644 index 56f65a026..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.svg deleted file mode 100644 index d3c67c23d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.png deleted file mode 100644 index 96c9dfb82..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.puml deleted file mode 100644 index e5210e6a4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.puml +++ /dev/null @@ -1,11 +0,0 @@ -@startuml - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - Sequence - Context level - -participant "External" as C4InterFlow.SoftwareSystems.ExternalSystem -participant "Catalog Api" as dotnet.eShop.Architecture.SoftwareSystems.CatalogApi - -C4InterFlow.SoftwareSystems.ExternalSystem -> dotnet.eShop.Architecture.SoftwareSystems.CatalogApi : Save Changes Async - - -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.svg deleted file mode 100644 index 84f0be9ba..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Components/Catalog Context/Interfaces/Save Changes Async/Context - Sequence.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - Catalog Context - Save Changes Async - Sequence - Context levelExternalExternalCatalog ApiCatalog ApiSave Changes Async \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.png deleted file mode 100644 index 1435cea43..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.puml deleted file mode 100644 index 48797bad0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.svg deleted file mode 100644 index ffe552619..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - C4 Static - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.png deleted file mode 100644 index 0f216a66f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.puml deleted file mode 100644 index 48e86b40c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.puml +++ /dev/null @@ -1,27 +0,0 @@ -@startuml -!include ..\..\..\..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - Infrastructure - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.svg deleted file mode 100644 index 44bae1314..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Containers/Infrastructure/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - Infrastructure - C4 - Container levelCatalog Api[System]InfrastructureLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4 Static.png deleted file mode 100644 index 9cfbad1b5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4 Static.puml deleted file mode 100644 index 1a7c99a75..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4 Static.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4 Static.svg deleted file mode 100644 index bb36ebf8c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - C4 Static - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4.png deleted file mode 100644 index 260b09ff2..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4.puml deleted file mode 100644 index 7d0bd1f95..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4.puml +++ /dev/null @@ -1,24 +0,0 @@ -@startuml -!include ..\..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - Catalog Api - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4.svg deleted file mode 100644 index c7c0eb1f2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Catalog Api/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - Catalog Api - C4 - Context levelCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4 Static.png deleted file mode 100644 index 4c23983a5..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4 Static.puml deleted file mode 100644 index 58d33332a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4 Static.puml +++ /dev/null @@ -1,49 +0,0 @@ -@startuml -!include ..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4 Static.svg deleted file mode 100644 index 58e4f9dd6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - C4 Static - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextUsesUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4.png deleted file mode 100644 index 40be03d14..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4.puml deleted file mode 100644 index 55a7e7ced..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4.puml +++ /dev/null @@ -1,49 +0,0 @@ -@startuml -!include ..\..\..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4.svg deleted file mode 100644 index b3da7d833..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - C4 - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextKey Delete AsyncString Get Lease AsyncString Set AsyncDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4 Static.png deleted file mode 100644 index 748e0bc24..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4 Static.puml deleted file mode 100644 index f8a30e175..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4 Static.svg deleted file mode 100644 index d96d2d276..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - C4 Static - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureUsesUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4.png deleted file mode 100644 index c822ab26c..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4.puml deleted file mode 100644 index 3011f846d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4.svg deleted file mode 100644 index f1929b946..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - C4 - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4 Static.png deleted file mode 100644 index 92d81a6cc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4 Static.puml deleted file mode 100644 index d06ece59d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4 Static.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include ..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4 Static.svg deleted file mode 100644 index 5c1909a96..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - C4 Static - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4.png deleted file mode 100644 index 97923f8ed..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4.puml deleted file mode 100644 index 957ce5761..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include ..\..\..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - Architecture - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4.svg deleted file mode 100644 index a77bcca77..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Architecture/Software Systems/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - Architecture - C4 - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4 Static.png deleted file mode 100644 index e8f472c0f..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4 Static.puml deleted file mode 100644 index 1757e48bc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4 Static.puml +++ /dev/null @@ -1,49 +0,0 @@ -@startuml -!include ..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - C4 Static - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4 Static.svg deleted file mode 100644 index a471022b4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - C4 Static - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextUsesUsesUsesLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4.png deleted file mode 100644 index d560aaf47..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4.puml deleted file mode 100644 index 047ffa6f2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4.puml +++ /dev/null @@ -1,49 +0,0 @@ -@startuml -!include ..\..\.c4s\C4_Component.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - C4 - Component level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Redis Basket Repository", "", "") - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Redis Database", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc") { - Component(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, "Basket Service", "", "") -} -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, "Catalog Api", "", "") -} - -Container_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure") { - Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Context", "", "") -} -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase, "Key Delete Async\nString Get Lease Async\nString Set Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4.svg deleted file mode 100644 index 8ff298a64..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Component - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - C4 - Component levelBasket Api[System]Data[Container]Grpc[Container]Catalog Api[System]Api[Container]Infrastructure[Container]Redis Basket RepositoryRedis DatabaseBasket ServiceCatalog ApiCatalog ContextKey Delete AsyncString Get Lease AsyncString Set AsyncDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  component  system boundary(dashed)  container boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4 Static.png deleted file mode 100644 index f0e26f1dc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4 Static.puml deleted file mode 100644 index 9906de32f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4 Static.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - C4 Static - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Uses") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Uses") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4 Static.svg deleted file mode 100644 index bf3133311..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - C4 Static - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureUsesUsesLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4.png deleted file mode 100644 index fa63b7906..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4.puml deleted file mode 100644 index 5637846b9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4.puml +++ /dev/null @@ -1,35 +0,0 @@ -@startuml -!include ..\..\.c4s\C4_Container.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - C4 - Container level - - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Data", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, "Grpc", "", "") -} - -System_Boundary(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api") { - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, "Api", "", "") - Container(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Infrastructure", "", "") -} - -Rel(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc, dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data, "Delete Basket Async\nGet Basket Async\nUpdate Basket Async") -Rel(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api, dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure, "Catalog Items Add\nSave Changes Async\nCatalog Items Single Or Default\nCatalog Items Remove\nCatalog Items To List Async") - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4.svg deleted file mode 100644 index 8520f21f1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Container - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - C4 - Container levelBasket Api[System]Catalog Api[System]DataGrpcApiInfrastructureDelete Basket AsyncGet Basket AsyncUpdate Basket AsyncCatalog Items AddSave Changes AsyncCatalog Items Single OrDefaultCatalog Items RemoveCatalog Items To ListAsyncLegend  container  system boundary(dashed)  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4 Static.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4 Static.png deleted file mode 100644 index e3699256e..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4 Static.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4 Static.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4 Static.puml deleted file mode 100644 index e251dbfd7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4 Static.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include ..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - C4 Static - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4 Static.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4 Static.svg deleted file mode 100644 index d151d5e68..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4 Static.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - C4 Static - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4.png b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4.png deleted file mode 100644 index 92dad5ebc..000000000 Binary files a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4.png and /dev/null differ diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4.puml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4.puml deleted file mode 100644 index 7383c5362..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4.puml +++ /dev/null @@ -1,25 +0,0 @@ -@startuml -!include ..\..\.c4s\C4_Context.puml - -AddElementTag("c4interflow:lifecycle:new", $bgColor=green, $fontColor=#ffffff, $borderColor=green, $shadowing="False") -AddElementTag("c4interflow:lifecycle:changed", $bgColor=orange, $fontColor=#ffffff, $borderColor=orange, $shadowing="False") -AddElementTag("c4interflow:lifecycle:removed", $bgColor=red, $fontColor=#ffffff, $borderColor=red, $shadowing="False") - -AddRelTag("c4interflow:lifecycle:new", $textColor=green, $lineColor=green) -AddRelTag("c4interflow:lifecycle:changed", $textColor=orange, $lineColor=orange) -AddRelTag("c4interflow:lifecycle:removed", $textColor=red, $lineColor=red) - -SHOW_PERSON_PORTRAIT() -LAYOUT_TOP_DOWN() - -skinparam linetype polyline - -title dotnet - eShop - C4 - Context level - -System(dotnet.eShop.Architecture.SoftwareSystems.BasketApi, "Basket Api", "") -System(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi, "Catalog Api", "") - - - -SHOW_LEGEND() -@enduml diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4.svg b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4.svg deleted file mode 100644 index 6f4d26ba6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Diagrams/dotnet/eShop/Context - C4.svg +++ /dev/null @@ -1 +0,0 @@ -dotnet - eShop - C4 - Context levelBasket ApiCatalog ApiLegend  system  \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/DeleteBasketAsync.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/DeleteBasketAsync.cs deleted file mode 100644 index 6ed45b4e1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/DeleteBasketAsync.cs +++ /dev/null @@ -1,42 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class BasketApi - { - public partial class Containers - { - public partial class Data - { - public partial class Components - { - public partial class RedisBasketRepository - { - public partial class Interfaces - { - public partial class DeleteBasketAsync : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.DeleteBasketAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.ALIAS, ALIAS, "Delete Basket Async") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .Use("dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketKey"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketAsync.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketAsync.cs deleted file mode 100644 index 0fd5fc773..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketAsync.cs +++ /dev/null @@ -1,43 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class BasketApi - { - public partial class Containers - { - public partial class Data - { - public partial class Components - { - public partial class RedisBasketRepository - { - public partial class Interfaces - { - public partial class GetBasketAsync : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.ALIAS, ALIAS, "Get Basket Async") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .Use("dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketKey") - .Return(@"JsonSerializer.Deserialize"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/UpdateBasketAsync.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/UpdateBasketAsync.cs deleted file mode 100644 index 05cf4f3af..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/UpdateBasketAsync.cs +++ /dev/null @@ -1,43 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class BasketApi - { - public partial class Containers - { - public partial class Data - { - public partial class Components - { - public partial class RedisBasketRepository - { - public partial class Interfaces - { - public partial class UpdateBasketAsync : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.UpdateBasketAsync"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.ALIAS, ALIAS, "Update Basket Async") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .Use("dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketKey") - .Use("dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketAsync"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/DeleteBasket.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/DeleteBasket.cs deleted file mode 100644 index 8af4b84ac..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/DeleteBasket.cs +++ /dev/null @@ -1,45 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class BasketApi - { - public partial class Containers - { - public partial class Grpc - { - public partial class Components - { - public partial class BasketService - { - public partial class Interfaces - { - public partial class DeleteBasket : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.DeleteBasket"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Delete Basket") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .If(@"string.IsNullOrEmpty(userId)") - .Use("dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowNotAuthenticated") - .EndIf() - .Use("dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.DeleteBasketAsync"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/GetBasket.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/GetBasket.cs deleted file mode 100644 index fbebeacc2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/GetBasket.cs +++ /dev/null @@ -1,45 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class BasketApi - { - public partial class Containers - { - public partial class Grpc - { - public partial class Components - { - public partial class BasketService - { - public partial class Interfaces - { - public partial class GetBasket : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.GetBasket"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Get Basket") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .Use("dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketAsync") - .If(@"data is not null") - .Use("dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasketResponse") - .EndIf(), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/UpdateBasket.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/UpdateBasket.cs deleted file mode 100644 index 6c930f92f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/UpdateBasket.cs +++ /dev/null @@ -1,50 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class BasketApi - { - public partial class Containers - { - public partial class Grpc - { - public partial class Components - { - public partial class BasketService - { - public partial class Interfaces - { - public partial class UpdateBasket : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.UpdateBasket"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.ALIAS, ALIAS, "Update Basket") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .If(@"string.IsNullOrEmpty(userId)") - .Use("dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowNotAuthenticated") - .EndIf() - .Use("dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasket") - .Use("dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.UpdateBasketAsync") - .If(@"response is null") - .Use("dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowBasketDoesNotExist") - .EndIf() - .Use("dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasketResponse"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi.cs deleted file mode 100644 index 8353ea308..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi.cs +++ /dev/null @@ -1,24 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class CatalogApi : ISoftwareSystemInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi"; - public static SoftwareSystem Instance => new SoftwareSystem(ALIAS, "Catalog Api") - { - Description = "", - Boundary = Boundary.Internal - }; - - public partial class Containers - { - } - - public partial class Interfaces - { - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi.cs deleted file mode 100644 index 0ee96ff96..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi.cs +++ /dev/null @@ -1,33 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class CatalogApi - { - public partial class Containers - { - public partial class Api - { - public partial class Components - { - public partial class CatalogApi : IComponentInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi"; - public static Component Instance => new Component(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.ALIAS, ALIAS, "Catalog Api") - { - ComponentType = ComponentType.None, - Description = "", - Technology = "" - }; - - public partial class Interfaces - { - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/CreateItem.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/CreateItem.cs deleted file mode 100644 index cd3c3410c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/CreateItem.cs +++ /dev/null @@ -1,44 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class CatalogApi - { - public partial class Containers - { - public partial class Api - { - public partial class Components - { - public partial class CatalogApi - { - public partial class Interfaces - { - public partial class CreateItem : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.CreateItem"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Create Item") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsAdd") - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync") - .Return(@"TypedResults.CreatedAtRoute"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/DeleteItemById.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/DeleteItemById.cs deleted file mode 100644 index bb907a4bd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/DeleteItemById.cs +++ /dev/null @@ -1,48 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class CatalogApi - { - public partial class Containers - { - public partial class Api - { - public partial class Components - { - public partial class CatalogApi - { - public partial class Interfaces - { - public partial class DeleteItemById : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.DeleteItemById"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Delete Item By Id") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsSingleOrDefault") - .If(@"item is null") - .Return(@"TypedResults.NotFound") - .EndIf() - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsRemove") - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync") - .Return(@"TypedResults.NoContent"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetAllItems.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetAllItems.cs deleted file mode 100644 index bdae7a14b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetAllItems.cs +++ /dev/null @@ -1,44 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class CatalogApi - { - public partial class Containers - { - public partial class Api - { - public partial class Components - { - public partial class CatalogApi - { - public partial class Interfaces - { - public partial class GetAllItems : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetAllItems"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get All Items") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync") - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder") - .Return(@"TypedResults.Ok"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemPictureById.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemPictureById.cs deleted file mode 100644 index 82e91e7e5..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemPictureById.cs +++ /dev/null @@ -1,47 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class CatalogApi - { - public partial class Containers - { - public partial class Api - { - public partial class Components - { - public partial class CatalogApi - { - public partial class Interfaces - { - public partial class GetItemPictureById : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemPictureById"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Item Picture By Id") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .If(@"item is null") - .Return(@"TypedResults.NotFound") - .EndIf() - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetFullPath") - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetImageMimeTypeFromImageFileExtension") - .Return(@"TypedResults.PhysicalFile"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandAndTypeId.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandAndTypeId.cs deleted file mode 100644 index 3872184f2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandAndTypeId.cs +++ /dev/null @@ -1,43 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class CatalogApi - { - public partial class Containers - { - public partial class Api - { - public partial class Components - { - public partial class CatalogApi - { - public partial class Interfaces - { - public partial class GetItemsByBrandAndTypeId : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsByBrandAndTypeId"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Items By Brand And Type Id") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder") - .Return(@"TypedResults.Ok"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandId.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandId.cs deleted file mode 100644 index 69267e437..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandId.cs +++ /dev/null @@ -1,43 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class CatalogApi - { - public partial class Containers - { - public partial class Api - { - public partial class Components - { - public partial class CatalogApi - { - public partial class Interfaces - { - public partial class GetItemsByBrandId : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsByBrandId"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Items By Brand Id") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder") - .Return(@"TypedResults.Ok"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByIds.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByIds.cs deleted file mode 100644 index 5b9d26605..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByIds.cs +++ /dev/null @@ -1,44 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class CatalogApi - { - public partial class Containers - { - public partial class Api - { - public partial class Components - { - public partial class CatalogApi - { - public partial class Interfaces - { - public partial class GetItemsByIds : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsByIds"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Items By Ids") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync") - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder") - .Return(@"TypedResults.Ok"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByName.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByName.cs deleted file mode 100644 index 3bbe58d64..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByName.cs +++ /dev/null @@ -1,44 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class CatalogApi - { - public partial class Containers - { - public partial class Api - { - public partial class Components - { - public partial class CatalogApi - { - public partial class Interfaces - { - public partial class GetItemsByName : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsByName"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Items By Name") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync") - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder") - .Return(@"TypedResults.Ok"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsBySemanticRelevance.cs b/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsBySemanticRelevance.cs deleted file mode 100644 index c5beeec0a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsBySemanticRelevance.cs +++ /dev/null @@ -1,51 +0,0 @@ -// -using C4InterFlow.Structures; -using C4InterFlow.Structures.Interfaces; - -namespace dotnet.eShop.Architecture.SoftwareSystems -{ - public partial class CatalogApi - { - public partial class Containers - { - public partial class Api - { - public partial class Components - { - public partial class CatalogApi - { - public partial class Interfaces - { - public partial class GetItemsBySemanticRelevance : IInterfaceInstance - { - private static readonly string ALIAS = "dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsBySemanticRelevance"; - public static Interface Instance => new Interface(dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.ALIAS, ALIAS, "Get Items By Semantic Relevance") - { - Description = "", - Path = "", - IsPrivate = false, - Protocol = "", - Flow = new Flow(ALIAS) - .If(@"!services.CatalogAI.IsEnabled") - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsByName") - .EndIf() - .If(@"services.Logger.IsEnabled(LogLevel.Debug)") - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync") - .Else() - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync") - .EndIf() - .Use("dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder") - .Return(@"TypedResults.Ok"), - Input = "", - InputTemplate = "", - Output = "", - OutputTemplate = "" - }; - } - } - } - } - } - } - } -} \ No newline at end of file diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi.yaml deleted file mode 100644 index d15bb282d..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi.yaml +++ /dev/null @@ -1,10 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Label: Basket Api - Boundary: Internal - Description: '' - Containers: {} - Interfaces: {} diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data.yaml deleted file mode 100644 index b567c0d13..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data.yaml +++ /dev/null @@ -1,15 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Data: - Label: Data - Description: '' - ContainerType: None - Boundary: Internal - Technology: '' - Components: {} - Interfaces: {} - Entities: {} diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository.yaml deleted file mode 100644 index 56b2387f8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository.yaml +++ /dev/null @@ -1,14 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Data: - Components: - RedisBasketRepository: - Label: Redis Basket Repository - ComponentType: None - Description: '' - Technology: '' - Interfaces: {} diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/DeleteBasketAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/DeleteBasketAsync.yaml deleted file mode 100644 index eda6747a4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/DeleteBasketAsync.yaml +++ /dev/null @@ -1,23 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Data: - Components: - RedisBasketRepository: - Interfaces: - DeleteBasketAsync: - Label: Delete Basket Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.KeyDeleteAsync - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketAsync.yaml deleted file mode 100644 index 08c9754d1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketAsync.yaml +++ /dev/null @@ -1,27 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Data: - Components: - RedisBasketRepository: - Interfaces: - GetBasketAsync: - Label: Get Basket Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.StringGetLeaseAsync - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketKey - - Type: Return - Expression: JsonSerializer.Deserialize - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketKey.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketKey.yaml deleted file mode 100644 index 1b2b6372a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/GetBasketKey.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Data: - Components: - RedisBasketRepository: - Interfaces: - GetBasketKey: - Label: Get Basket Key - Description: '' - Path: '' - IsPrivate: true - Protocol: '' - Flows: - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/UpdateBasketAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/UpdateBasketAsync.yaml deleted file mode 100644 index 1e423f6a6..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisBasketRepository/Interfaces/UpdateBasketAsync.yaml +++ /dev/null @@ -1,27 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Data: - Components: - RedisBasketRepository: - Interfaces: - UpdateBasketAsync: - Label: Update Basket Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisDatabase.Interfaces.StringSetAsync - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketKey - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketAsync - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase.yaml deleted file mode 100644 index 101cd59de..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase.yaml +++ /dev/null @@ -1,14 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Data: - Components: - RedisDatabase: - Label: Redis Database - ComponentType: None - Description: '' - Technology: '' - Interfaces: {} diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/KeyDeleteAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/KeyDeleteAsync.yaml deleted file mode 100644 index 103ca59ea..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/KeyDeleteAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Data: - Components: - RedisDatabase: - Interfaces: - KeyDeleteAsync: - Label: Key Delete Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringGetLeaseAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringGetLeaseAsync.yaml deleted file mode 100644 index 8a8188c7a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringGetLeaseAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Data: - Components: - RedisDatabase: - Interfaces: - StringGetLeaseAsync: - Label: String Get Lease Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringSetAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringSetAsync.yaml deleted file mode 100644 index 7653ee246..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Data/Components/RedisDatabase/Interfaces/StringSetAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Data: - Components: - RedisDatabase: - Interfaces: - StringSetAsync: - Label: String Set Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc.yaml deleted file mode 100644 index 6f3e0e69a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc.yaml +++ /dev/null @@ -1,15 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Grpc: - Label: Grpc - Description: '' - ContainerType: None - Boundary: Internal - Technology: '' - Components: {} - Interfaces: {} - Entities: {} diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService.yaml deleted file mode 100644 index ee7e5ad9b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService.yaml +++ /dev/null @@ -1,14 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Grpc: - Components: - BasketService: - Label: Basket Service - ComponentType: None - Description: '' - Technology: '' - Interfaces: {} diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/DeleteBasket.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/DeleteBasket.yaml deleted file mode 100644 index 63c2f21ad..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/DeleteBasket.yaml +++ /dev/null @@ -1,28 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Grpc: - Components: - BasketService: - Interfaces: - DeleteBasket: - Label: Delete Basket - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: If - Expression: string.IsNullOrEmpty(userId) - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowNotAuthenticated - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.DeleteBasketAsync - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/GetBasket.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/GetBasket.yaml deleted file mode 100644 index 20102d39c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/GetBasket.yaml +++ /dev/null @@ -1,28 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Grpc: - Components: - BasketService: - Interfaces: - GetBasket: - Label: Get Basket - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.GetBasketAsync - - Type: If - Expression: data is not null - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasketResponse - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasket.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasket.yaml deleted file mode 100644 index ddc9fe3dd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasket.yaml +++ /dev/null @@ -1,23 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Grpc: - Components: - BasketService: - Interfaces: - MapToCustomerBasket: - Label: Map To Customer Basket - Description: '' - Path: '' - IsPrivate: true - Protocol: '' - Flows: - - Type: Return - Expression: response - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasketResponse.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasketResponse.yaml deleted file mode 100644 index 15342de2a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/MapToCustomerBasketResponse.yaml +++ /dev/null @@ -1,23 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Grpc: - Components: - BasketService: - Interfaces: - MapToCustomerBasketResponse: - Label: Map To Customer Basket Response - Description: '' - Path: '' - IsPrivate: true - Protocol: '' - Flows: - - Type: Return - Expression: response - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowBasketDoesNotExist.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowBasketDoesNotExist.yaml deleted file mode 100644 index db4f882d9..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowBasketDoesNotExist.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Grpc: - Components: - BasketService: - Interfaces: - ThrowBasketDoesNotExist: - Label: Throw Basket Does Not Exist - Description: '' - Path: '' - IsPrivate: true - Protocol: '' - Flows: - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowNotAuthenticated.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowNotAuthenticated.yaml deleted file mode 100644 index 14d09bb6f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/ThrowNotAuthenticated.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Grpc: - Components: - BasketService: - Interfaces: - ThrowNotAuthenticated: - Label: Throw Not Authenticated - Description: '' - Path: '' - IsPrivate: true - Protocol: '' - Flows: - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/UpdateBasket.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/UpdateBasket.yaml deleted file mode 100644 index 5ddb10e20..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/BasketApi/Containers/Grpc/Components/BasketService/Interfaces/UpdateBasket.yaml +++ /dev/null @@ -1,37 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - BasketApi: - Containers: - Grpc: - Components: - BasketService: - Interfaces: - UpdateBasket: - Label: Update Basket - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: If - Expression: string.IsNullOrEmpty(userId) - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowNotAuthenticated - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasket - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Data.Components.RedisBasketRepository.Interfaces.UpdateBasketAsync - - Type: If - Expression: response is null - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.ThrowBasketDoesNotExist - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.BasketApi.Containers.Grpc.Components.BasketService.Interfaces.MapToCustomerBasketResponse - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi.yaml deleted file mode 100644 index daba463cb..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi.yaml +++ /dev/null @@ -1,10 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Label: Catalog Api - Boundary: Internal - Description: '' - Containers: {} - Interfaces: {} diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api.yaml deleted file mode 100644 index b173165f2..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api.yaml +++ /dev/null @@ -1,15 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Label: Api - Description: '' - ContainerType: None - Boundary: Internal - Technology: '' - Components: {} - Interfaces: {} - Entities: {} diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi.yaml deleted file mode 100644 index 91f5a2089..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi.yaml +++ /dev/null @@ -1,14 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Label: Catalog Api - ComponentType: None - Description: '' - Technology: '' - Interfaces: {} diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/ChangeUriPlaceholder.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/ChangeUriPlaceholder.yaml deleted file mode 100644 index 809b78f6b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/ChangeUriPlaceholder.yaml +++ /dev/null @@ -1,23 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - ChangeUriPlaceholder: - Label: Change Uri Placeholder - Description: '' - Path: '' - IsPrivate: true - Protocol: '' - Flows: - - Type: Return - Expression: items - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/CreateItem.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/CreateItem.yaml deleted file mode 100644 index 7d8a5fe5e..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/CreateItem.yaml +++ /dev/null @@ -1,27 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - CreateItem: - Label: Create Item - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsAdd - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync - - Type: Return - Expression: TypedResults.CreatedAtRoute - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/DeleteItemById.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/DeleteItemById.yaml deleted file mode 100644 index b51bb80a1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/DeleteItemById.yaml +++ /dev/null @@ -1,34 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - DeleteItemById: - Label: Delete Item By Id - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsSingleOrDefault - - Type: If - Expression: item is null - Flows: - - Type: Return - Expression: TypedResults.NotFound - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsRemove - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync - - Type: Return - Expression: TypedResults.NoContent - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetAllItems.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetAllItems.yaml deleted file mode 100644 index e928ed605..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetAllItems.yaml +++ /dev/null @@ -1,27 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - GetAllItems: - Label: Get All Items - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder - - Type: Return - Expression: TypedResults.Ok - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetFullPath.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetFullPath.yaml deleted file mode 100644 index 43d505251..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetFullPath.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - GetFullPath: - Label: Get Full Path - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetImageMimeTypeFromImageFileExtension.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetImageMimeTypeFromImageFileExtension.yaml deleted file mode 100644 index affe9dcda..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetImageMimeTypeFromImageFileExtension.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - GetImageMimeTypeFromImageFileExtension: - Label: Get Image Mime Type From Image File Extension - Description: '' - Path: '' - IsPrivate: true - Protocol: '' - Flows: - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemById.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemById.yaml deleted file mode 100644 index 9f011b434..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemById.yaml +++ /dev/null @@ -1,33 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - GetItemById: - Label: Get Item By Id - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: If - Expression: id <= 0 - Flows: - - Type: Return - Expression: TypedResults.BadRequest - - Type: If - Expression: item == null - Flows: - - Type: Return - Expression: TypedResults.NotFound - - Type: Return - Expression: TypedResults.Ok - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemPictureById.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemPictureById.yaml deleted file mode 100644 index 84d02eec0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemPictureById.yaml +++ /dev/null @@ -1,32 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - GetItemPictureById: - Label: Get Item Picture By Id - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: If - Expression: item is null - Flows: - - Type: Return - Expression: TypedResults.NotFound - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetFullPath - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetImageMimeTypeFromImageFileExtension - - Type: Return - Expression: TypedResults.PhysicalFile - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandAndTypeId.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandAndTypeId.yaml deleted file mode 100644 index 99b3a0970..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandAndTypeId.yaml +++ /dev/null @@ -1,25 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - GetItemsByBrandAndTypeId: - Label: Get Items By Brand And Type Id - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder - - Type: Return - Expression: TypedResults.Ok - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandId.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandId.yaml deleted file mode 100644 index 751e366bd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByBrandId.yaml +++ /dev/null @@ -1,25 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - GetItemsByBrandId: - Label: Get Items By Brand Id - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder - - Type: Return - Expression: TypedResults.Ok - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByIds.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByIds.yaml deleted file mode 100644 index 324af4789..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByIds.yaml +++ /dev/null @@ -1,27 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - GetItemsByIds: - Label: Get Items By Ids - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder - - Type: Return - Expression: TypedResults.Ok - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByName.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByName.yaml deleted file mode 100644 index f01ec1f87..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsByName.yaml +++ /dev/null @@ -1,27 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - GetItemsByName: - Label: Get Items By Name - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder - - Type: Return - Expression: TypedResults.Ok - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsBySemanticRelevance.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsBySemanticRelevance.yaml deleted file mode 100644 index a8a687fa3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/GetItemsBySemanticRelevance.yaml +++ /dev/null @@ -1,39 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - GetItemsBySemanticRelevance: - Label: Get Items By Semantic Relevance - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: If - Expression: '!services.CatalogAI.IsEnabled' - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.GetItemsByName - - Type: If - Expression: services.Logger.IsEnabled(LogLevel.Debug) - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync - - Type: Else - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.CatalogItemsToListAsync - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Api.Components.CatalogApi.Interfaces.ChangeUriPlaceholder - - Type: Return - Expression: TypedResults.Ok - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/MapCatalogApi.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/MapCatalogApi.yaml deleted file mode 100644 index 21cfbaf89..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/MapCatalogApi.yaml +++ /dev/null @@ -1,23 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - MapCatalogApi: - Label: Map Catalog Api - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: Return - Expression: app - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/UpdateItem.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/UpdateItem.yaml deleted file mode 100644 index 081a664c3..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Api/Components/CatalogApi/Interfaces/UpdateItem.yaml +++ /dev/null @@ -1,35 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Api: - Components: - CatalogApi: - Interfaces: - UpdateItem: - Label: Update Item - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: - - Type: If - Expression: catalogItem == null - Flows: - - Type: Return - Expression: TypedResults.NotFound - - Type: If - Expression: priceEntry.IsModified - Flows: - - Type: Else - Flows: - - Type: Use - Expression: dotnet.eShop.Architecture.SoftwareSystems.CatalogApi.Containers.Infrastructure.Components.CatalogContext.Interfaces.SaveChangesAsync - - Type: Return - Expression: TypedResults.Created - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure.yaml deleted file mode 100644 index 893c3ae81..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure.yaml +++ /dev/null @@ -1,15 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Label: Infrastructure - Description: '' - ContainerType: None - Boundary: Internal - Technology: '' - Components: {} - Interfaces: {} - Entities: {} diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext.yaml deleted file mode 100644 index 4b1c8ad60..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext.yaml +++ /dev/null @@ -1,14 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Label: Catalog Context - ComponentType: None - Description: '' - Technology: '' - Interfaces: {} diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAdd.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAdd.yaml deleted file mode 100644 index 74b3edba8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAdd.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogBrandsAdd: - Label: Catalog Brands Add - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAnyAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAnyAsync.yaml deleted file mode 100644 index 656f33e86..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAnyAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogBrandsAnyAsync: - Label: Catalog Brands Any Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAsQueryable.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAsQueryable.yaml deleted file mode 100644 index 932360aab..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsAsQueryable.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogBrandsAsQueryable: - Label: Catalog Brands As Queryable - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFindAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFindAsync.yaml deleted file mode 100644 index b0fc87bbd..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFindAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogBrandsFindAsync: - Label: Catalog Brands Find Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFirstOrDefaultAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFirstOrDefaultAsync.yaml deleted file mode 100644 index 8dfb92f4f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsFirstOrDefaultAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogBrandsFirstOrDefaultAsync: - Label: Catalog Brands First Or Default Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsRemove.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsRemove.yaml deleted file mode 100644 index 1631c403b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsRemove.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogBrandsRemove: - Label: Catalog Brands Remove - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsSingleOrDefault.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsSingleOrDefault.yaml deleted file mode 100644 index f0d7e54b0..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsSingleOrDefault.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogBrandsSingleOrDefault: - Label: Catalog Brands Single Or Default - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsToListAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsToListAsync.yaml deleted file mode 100644 index f482cacb7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogBrandsToListAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogBrandsToListAsync: - Label: Catalog Brands To List Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAdd.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAdd.yaml deleted file mode 100644 index b1507873c..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAdd.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogItemsAdd: - Label: Catalog Items Add - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAnyAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAnyAsync.yaml deleted file mode 100644 index 779c4b208..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAnyAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogItemsAnyAsync: - Label: Catalog Items Any Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAsQueryable.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAsQueryable.yaml deleted file mode 100644 index 419e3388a..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsAsQueryable.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogItemsAsQueryable: - Label: Catalog Items As Queryable - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFindAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFindAsync.yaml deleted file mode 100644 index 51d31f271..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFindAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogItemsFindAsync: - Label: Catalog Items Find Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFirstOrDefaultAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFirstOrDefaultAsync.yaml deleted file mode 100644 index 070aa6ffc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsFirstOrDefaultAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogItemsFirstOrDefaultAsync: - Label: Catalog Items First Or Default Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsRemove.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsRemove.yaml deleted file mode 100644 index 4064c18e7..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsRemove.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogItemsRemove: - Label: Catalog Items Remove - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsSingleOrDefault.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsSingleOrDefault.yaml deleted file mode 100644 index d21c40212..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsSingleOrDefault.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogItemsSingleOrDefault: - Label: Catalog Items Single Or Default - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsToListAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsToListAsync.yaml deleted file mode 100644 index 1f9b8359f..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogItemsToListAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogItemsToListAsync: - Label: Catalog Items To List Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAdd.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAdd.yaml deleted file mode 100644 index 04e0b3d2b..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAdd.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogTypesAdd: - Label: Catalog Types Add - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAnyAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAnyAsync.yaml deleted file mode 100644 index 93ef044f4..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAnyAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogTypesAnyAsync: - Label: Catalog Types Any Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAsQueryable.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAsQueryable.yaml deleted file mode 100644 index 17cd73cd8..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesAsQueryable.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogTypesAsQueryable: - Label: Catalog Types As Queryable - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFindAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFindAsync.yaml deleted file mode 100644 index 6bbfa01cc..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFindAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogTypesFindAsync: - Label: Catalog Types Find Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFirstOrDefaultAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFirstOrDefaultAsync.yaml deleted file mode 100644 index a284b3241..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesFirstOrDefaultAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogTypesFirstOrDefaultAsync: - Label: Catalog Types First Or Default Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesRemove.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesRemove.yaml deleted file mode 100644 index 3c4b83888..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesRemove.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogTypesRemove: - Label: Catalog Types Remove - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesSingleOrDefault.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesSingleOrDefault.yaml deleted file mode 100644 index 0ac2f8f99..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesSingleOrDefault.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogTypesSingleOrDefault: - Label: Catalog Types Single Or Default - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesToListAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesToListAsync.yaml deleted file mode 100644 index 1637b5848..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/CatalogTypesToListAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - CatalogTypesToListAsync: - Label: Catalog Types To List Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/SaveChangesAsync.yaml b/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/SaveChangesAsync.yaml deleted file mode 100644 index 3fa6c5be1..000000000 --- a/Samples/dotnet.eShop/dotnet.eShop.Architecture/Yaml/SoftwareSystems/CatalogApi/Containers/Infrastructure/Components/CatalogContext/Interfaces/SaveChangesAsync.yaml +++ /dev/null @@ -1,21 +0,0 @@ -dotnet: - eShop: - Architecture: - SoftwareSystems: - CatalogApi: - Containers: - Infrastructure: - Components: - CatalogContext: - Interfaces: - SaveChangesAsync: - Label: Save Changes Async - Description: '' - Path: '' - IsPrivate: false - Protocol: '' - Flows: [] - Input: '' - InputTemplate: '' - Output: '' - OutputTemplate: '' diff --git a/Samples/dotnet.eShop/draw-diagrams.bat b/Samples/dotnet.eShop/draw-diagrams.bat index 708526ff3..1a0cd56db 100644 --- a/Samples/dotnet.eShop/draw-diagrams.bat +++ b/Samples/dotnet.eShop/draw-diagrams.bat @@ -8,8 +8,8 @@ set "aac-type=Yaml" :::::::::::::::::::::::::::::::: set "build-configuration=Debug" -set "aac-root-namespace=dotnet.eShop.Architecture" -set "aac-project-name=dotnet.eShop.Architecture" +set "aac-root-namespace=DotNetEShop" +set "aac-project-name=DotNetEShop" set "cli-project-path=.\%aac-project-name%.Cli\%aac-project-name%.Cli.csproj" set "cli-output-dir=.\%aac-project-name%.Cli\bin\%build-configuration%\net6.0" set "cli-exe=%aac-project-name%.Cli.exe" diff --git a/Samples/dotnet.eShop/execute-aac-strategy.bat b/Samples/dotnet.eShop/execute-aac-strategy.bat index 89c983c33..995919cef 100644 --- a/Samples/dotnet.eShop/execute-aac-strategy.bat +++ b/Samples/dotnet.eShop/execute-aac-strategy.bat @@ -5,12 +5,12 @@ set "net-sourcecode-dir=C:\Data\Projects\C4InterFlow\eShop-main" ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: Possible values: CSharp, Yaml -set "aac-type=Yaml" +set "aac-type=CSharp" :::::::::::::::::::::::::::::::: set "build-configuration=Debug" -set "aac-root-namespace=dotnet.eShop.Architecture" -set "aac-project-name=dotnet.eShop.Architecture" +set "aac-root-namespace=DotNetEShop" +set "aac-project-name=DotNetEShop" set "cli-project-path=.\%aac-project-name%.Cli\%aac-project-name%.Cli.csproj" set "cli-output-dir=.\%aac-project-name%.Cli\bin\%build-configuration%\net6.0" set "cli-exe=%aac-project-name%.Cli.exe"