Skip to content

Instantly share code, notes, and snippets.

View rooks's full-sized avatar

Alexander Lobankov rooks

View GitHub Profile
public static class StructureMapDecoratorHelperExtension
{
public static DecoratorHelper<TTarget> Decorate<TTarget>(this SmartInstance<TTarget> instance)
{
return new DecoratorHelper<TTarget>(instance);
}
}
public class DecoratorHelper<TTarget>
{