Habanero.Smooth.PropertyAutoMapper.CreateIntPropRule C# (CSharp) Method

CreateIntPropRule() private method

private CreateIntPropRule ( ) : IPropRule
return IPropRule
        private IPropRule CreateIntPropRule()
        {
            var min = this.PropertyWrapper.GetAttribute<AutoMapIntPropRuleAttribute>().Min;
            var max = this.PropertyWrapper.GetAttribute<AutoMapIntPropRuleAttribute>().Max;
            return new PropRuleInteger("", "", min, max);
        }
        private IPropRule CreateShortPropRule()