Habanero.Smooth.OneToManyAutoMapper.OneToManyAutoMapper C# (CSharp) Method

OneToManyAutoMapper() public method

Construct the AutoMapper for a specified PropertyInfo.
public OneToManyAutoMapper ( PropertyInfo propInfo ) : System
propInfo System.Reflection.PropertyInfo
return System
        public OneToManyAutoMapper(PropertyInfo propInfo)
        {
            if (propInfo == null) throw new ArgumentNullException("propInfo");
            this.PropertyWrapper = propInfo.ToPropertyWrapper();
        }
        /// <summary>

Same methods

OneToManyAutoMapper::OneToManyAutoMapper ( PropertyWrapper propertyWrapper ) : System