/sharp-patterns

Collection of classes which help to organize .NET code by using design patterns.

Primary LanguageC#OtherNOASSERTION

Sharp Patterns

Organize your .NET code with design patterns.

Build status

Features

  • 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).

Installation

Nuget package name is SharpPatterns.

PM> Install-Package SharpPatterns