Esempio n. 1
0
        public ItemValues(ItemSchema schema)
        {
            _schema = schema;

            foreach (var property in _schema.GetCustomType().GetProperties())
            {
                _customPropertyValues.Add(property.Name, null);
            }
        }
 Type ICustomTypeProvider.GetCustomType()
 {
     return(_schema.GetCustomType());
 }