public static string ToIdString(AttributeSetAttributeUseId id)
        {
            var formatter = new AttributeSetAttributeUseIdFlattenedDtoFormatter();
            var idDto     = new AttributeSetAttributeUseIdFlattenedDto(id);
            var idStr     = formatter.ToString(idDto);

            return(idStr);
        }
Пример #2
0
        public static AttributeSetAttributeUseId ParseIdString(string idString)
        {
            var formatter = new AttributeSetAttributeUseIdFlattenedDtoFormatter();
            var idDto     = formatter.Parse(idString);
            var rId       = idDto.ToAttributeSetAttributeUseId();

            return(rId);
        }