Ejemplo n.º 1
0
 /// <summary>
 ///   Initializes a new instance of the DomainObjectWithDefaultPropertiesDTO class.
 /// </summary>
 protected DomainObjectWithDefaultProperties(string name)
     : base(name)
 {
     DefaultPropertyValueContainer = new PropertiesImplementation <DefaultPropertyValue>(this);
 }
Ejemplo n.º 2
0
        protected readonly PropertiesImplementation <DefaultPropertyValue> DefaultPropertyValueContainer;// = new PropertiesImplementation<DefaultPropertyValue>( );



        /// <summary>
        ///   Initializes a new instance of the DomainObjectWithDefaultProperties class.
        /// </summary>
        protected DomainObjectWithDefaultProperties( )
        {
            DefaultPropertyValueContainer = new PropertiesImplementation <DefaultPropertyValue>(this);
        }
 /// <summary>
 ///   Initializes a new instance of the DynamicPropertyDomainObject class.
 /// </summary>
 public DomainObjectWithPropertyValues( )
 {
     PropertyValueContainer = new PropertiesImplementation <PropertyValue>(this);
 }
 /// <summary>
 ///   Initializes a new instance of the <see cref = "DomainObjectWithPropertyValues" /> class.
 /// </summary>
 /// <param name = "name">The name.</param>
 public DomainObjectWithPropertyValues(string name)
     : base(name)
 {
     PropertyValueContainer = new PropertiesImplementation <PropertyValue>(this);
 }
Ejemplo n.º 5
0
        protected readonly PropertiesImplementation <DefaultPropertyValueReference> DefaultPropertyValueContainer;// = new PropertiesImplementation<DefaultPropertyValueReference>( );

        //     IList<DefaultPropertyValueReference> _defaultPropertyValueReferences = new List<DefaultPropertyValueReference>( );

        protected DisplayFilter( )
        {
            DefaultPropertyValueContainer = new PropertiesImplementation <DefaultPropertyValueReference>(this);
        }