/// <summary>
 /// Specify the constructor selection algorithm
 /// </summary>
 /// <param name="method"></param>
 /// <returns></returns>
 public IFluentExportStrategyConfiguration ImportConstructorSelection(IConstructorExpressionCreator method)
 {
     throw new NotImplementedException();
 }
Beispiel #2
0
 /// <summary>
 /// Specify the constructor selection algorithm
 /// </summary>
 /// <param name="method"></param>
 /// <returns></returns>
 public IFluentExportStrategyConfiguration ImportConstructorSelection(IConstructorExpressionCreator method)
 {
     return(_strategy.ImportConstructorSelection(method));
 }
        /// <summary>
        /// Specify the constructor selection algorithm
        /// </summary>
        /// <param name="method"></param>
        /// <returns></returns>
        public IFluentExportStrategyConfiguration ImportConstructorSelection(IConstructorExpressionCreator method)
        {
            _exportConfiguration.ConstructorSelectionMethod = method;

            return(this);
        }