public bool IsGreaterThan(object otherValue)
        {
            CustomValueComparer comparer = Comparers.GetComparer(AttributeDefinition.Type);

            return(comparer.IsGreaterThan(Value, otherValue));
        }
        public bool IsEqualTo(CustomObject otherObject)
        {
            CustomValueComparer comparer = Comparers.GetComparer(AttributeDefinition.Type);

            return(comparer.IsEqualTo(Value, otherObject.Value));
        }