public PropItemFixedPropertyDescriptor
        (
            PropertyDescriptorValues <T> tdConfig,
            PSFastAccessServiceInterface psFastAccessService,
            PropModelType propModel,
            PropIdType propId
        )
            : base(tdConfig.Name, tdConfig.Attributes)
        {
            _tdConfig            = tdConfig;
            _psFastAccessService = psFastAccessService;
            _propItemSetKey      = new PropItemSetKeyType(propModel);
            PropId = propId;

            _compKey = new SimpleExKey(10, propId);
        }
 public PropItemFixedPropertyDescriptor
 (
     PSFastAccessServiceInterface psFastAccessService,
     PropModelType propModel,
     PropIdType propId,
     PropNameType propertyName,
     Type propertyType,
     Attribute[] attributes
 )
     : this
     (
         GetTdConfig(propModel.ClassName, attributes, propertyName, propertyType),
         psFastAccessService,
         propModel,
         propId
     )
 {
 }