public JoinDesigner <TLeft, TRight> Then(Action <ThenDesigner <TLeft, TRight> > configureCallback)
        {
            var thenConfigurator = new ThenDesignerImpl <TLeft, TRight>(_configurator);

            configureCallback(thenConfigurator);

            return(this);
        }
Exemple #2
0
        public FactDesigner <T> Then(Action <ThenDesigner <T> > configureCallback)
        {
            var thenConfigurator = new ThenDesignerImpl <T>(_configurator);

            configureCallback(thenConfigurator);

            return(this);
        }
        public JoinDesigner <TLeft, TRight> Then(Action <ThenDesigner <TRight> > rightAction)
        {
            var thenConfigurator = new ThenDesignerImpl <TRight>(_configurator);

            rightAction(thenConfigurator);

            return(this);
        }