Hi!
I am studying the CodeCampServer.
I am confused about the MvcContrib.CommandProcessor.
Are there any tutorials about the CommandProcessor of the MvcContrib?
Hi!
I am studying the CodeCampServer.
I am confused about the MvcContrib.CommandProcessor.RulesEngine.
Are there any tutorials about the RulesEngine of the MvcContrib?
My question is not easy to explain using words, fortunately it's not too difficult to demonstrate. So, bear with me:
public interface Command<R>
{
public R execute();//parameter R is the type of object that will be returned as the result of the execution of this command
}
public abstract class BasicCommand<R>
{
}
public interface…