Organize your .NET code with design patterns.
- Chains (Chain of Responsibility pattern):
- SimpleTaskChain executes tasks one by one without any result.
- TaskChain executes tasks one by one, passing previous task result to the next task. Returns last task result.
- Repositories (Repository pattern).
Nuget package name is SharpPatterns
.
PM> Install-Package SharpPatterns