Skip to content

Commit

Permalink
a bit of changes #12
Browse files Browse the repository at this point in the history
  • Loading branch information
thangchung committed Jun 14, 2021
1 parent 598fc41 commit d3bbfc8
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,10 +434,15 @@ public class OutboxEntity
![](assets/products_screen.png)

# 馃巼 Cool references
# 馃巼 Credits

- https://docs.microsoft.com/en-us/dotnet/architecture/modern-web-apps-azure/common-web-application-architectures
- https://github.com/zkavtaskin/Domain-Driven-Design-Example
-
- https://github.com/ardalis/CleanArchitecture
- https://github.com/CanerPatir/aspnet-core-clean-arch
- https://github.com/jasontaylordev/CleanArchitecture
- https://github.com/ThreeDotsLabs/wild-workouts-go-ddd-example
- https://github.com/alibaba/COLA
- [Ant Design Components](https://ant.design/components/overview)
- [C4 PlaintUML Model](https://github.com/plantuml-stdlib/C4-PlantUML/blob/master/samples/C4CoreDiagrams.md)
- [Real world PlantUML](https://real-world-plantuml.com)
3 changes: 1 addition & 2 deletions clean-architecture-dotnet.sln
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "__", "__", "{CCCD3B2A-9EE2-
.editorconfig = .editorconfig
.gitattributes = .gitattributes
.gitignore = .gitignore
__global.json = __global.json
global.json = global.json
LICENSE = LICENSE
nuget.config = nuget.config
README.md = README.md
tye.yaml = tye.yaml
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Setting", "Setting", "{EEA08CE8-4834-4D36-ADE0-24F5F471AF6A}"
Expand Down
6 changes: 2 additions & 4 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"sdk": {
"version": "6.0",
"rollForward": "latestMajor",
"allowPrerelease": true
"version": "6.0.100-preview.4.21255.9"
}
}
}
1 change: 1 addition & 0 deletions nuget.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<packageSources>
<clear />
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
<add key="dotnet6" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json" />
<add key="github" value="https://nuget.pkg.github.com/thangchung/index.json" />
</packageSources>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ internal class Handler : IRequestHandler<Command, ResultModel<ProductDto>>
throw new ArgumentNullException(nameof(productCodeRepository));
}

public async Task<ResultModel<ProductDto>> Handle(Command request,
CancellationToken cancellationToken)
public async Task<ResultModel<ProductDto>> Handle(Command request, CancellationToken cancellationToken)
{
var productCode =
await _productCodeRepository.AddAsync(ProductCode.Create(request.Model.ProductCodeName));
Expand Down

0 comments on commit d3bbfc8

Please sign in to comment.