Beispiel #1
0
        /// <summary>
        ///     Initializes a new instance of the <see cref="T:System.Object" /> class.
        /// </summary>
        protected ChainHelperFor(IChainHelperFor <TIn, TOut> chainHelperFor)
        {
            if (chainHelperFor == null)
            {
                //   throw new ArgumentNullException(nameof(chainHelperFor));
            }

            NextChain = chainHelperFor;
        }
 /// <summary>
 ///     Initializes a new instance of the <see cref="T:System.Object" /> class.
 /// </summary>
 /// <exception cref="ArgumentNullException"></exception>
 protected ChainHelperFor(IChainHelperFor <TIn, TOut> chainHelperFor)
 {
     NextChain = chainHelperFor ?? throw new ArgumentNullException(nameof(chainHelperFor));
 }
Beispiel #3
0
 public ReturnClass(IDemoInterface demoInterface, IChainHelperFor <string, string> chainHelperFor)
 {
     _demoInterface  = demoInterface ?? throw new ArgumentNullException(nameof(demoInterface));
     _chainHelperFor = chainHelperFor ?? throw new ArgumentNullException(nameof(chainHelperFor));
 }
Beispiel #4
0
 public Two(IChainHelperFor <string, string> chainHelperFor)
     : base(chainHelperFor)
 {
 }
Beispiel #5
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="T:System.Object" /> class.
 /// </summary>
 protected ChainHelperFor(IChainHelperFor <TIn, TOut> chainHelperFor)
 {
     NextChain = chainHelperFor;
 }