This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IActivity | |
{ | |
void Run(); | |
bool Matches(int i); | |
} | |
public class PluginCoordinator | |
{ | |
private readonly IPluginActivator _activator; | |
private readonly PluginRunner _pluginRunner; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ValidationBehavior<T> : BasicBehavior where T : class | |
{ | |
IFubuRequest request; | |
IChainResolver chain; | |
IPartialFactory _factory; | |
public ValidationBehavior(IFubuRequest request, IChainResolver chain, IPartialFactory factory) : base(PartialBehavior.Executes) | |
{ | |
this.request = request; | |
this.chain = chain; |