コード例 #1
0
 public DecoratorArgumentBag(DecoratorArgument[] obj)
 {
     _defaultProperty = "Name";
     _properties      = new PropertySpecCollection();
     _selectedObject  = obj;
     InitPropertyBag();
 }
コード例 #2
0
 public TypeInfoPropertyBag(TypeInfo[] obj)
 {
     _defaultProperty = "ObjectName";
     _properties      = new PropertySpecCollection();
     _selectedObject  = obj;
     InitPropertyBag();
 }
コード例 #3
0
 public UnitOfWorkPropertyBag(UnitOfWorkProperty[] obj)
 {
     _defaultProperty = "Name";
     _properties      = new PropertySpecCollection();
     _selectedObject  = obj;
     InitPropertyBag();
 }
コード例 #4
0
 public BusinessRuleBag(BusinessRule[] obj)
 {
     _defaultProperty = "AssemblyFile";
     _properties      = new PropertySpecCollection();
     _selectedObject  = obj;
     InitPropertyBag();
 }
コード例 #5
0
ファイル: RuleBag.cs プロジェクト: rajeshwarn/CslaGenFork
 public RuleBag(Rule[] obj)
 {
     _defaultProperty = "Name";
     _properties      = new PropertySpecCollection();
     _selectedObject  = obj;
     InitPropertyBag();
 }
コード例 #6
0
 public UpdateValuePropertyBag(UpdateValueProperty[] obj)
 {
     _defaultProperty = "Name";
     _properties      = new PropertySpecCollection();
     _selectedObject  = obj;
     InitPropertyBag();
 }
コード例 #7
0
 public BusinessRulePropertyBag(BusinessRuleProperty[] obj)
 {
     _defaultProperty = "Name";
     _properties      = new PropertySpecCollection();
     _selectedObject  = obj;
     InitPropertyBag();
 }
コード例 #8
0
 public AssociativeEntityPropertyBag(AssociativeEntity[] obj)
 {
     _defaultProperty = "ObjectName";
     _properties      = new PropertySpecCollection();
     _selectedObject  = obj;
     InitPropertyBag();
 }
コード例 #9
0
 public CriteriaPropertyBag(CriteriaProperty[] obj)
 {
     _defaultProperty = "Name";
     _properties      = new PropertySpecCollection();
     _selectedObject  = obj;
     InitPropertyBag();
 }
コード例 #10
0
 public BusinessRuleParameterBag(BusinessRuleConstructorParameter[] obj)
 {
     _defaultProperty = "Name";
     _properties      = new PropertySpecCollection();
     _selectedObject  = obj;
     InitPropertyBag();
 }
コード例 #11
0
 public ConvertValuePropertyBag(ConvertValueProperty[] obj)
 {
     _defaultProperty = "BaseName";
     _properties      = new PropertySpecCollection();
     _selectedObject  = obj;
     InitPropertyBag();
 }
コード例 #12
0
 public AuthorizationRuleBag(AuthorizationRule[] obj)
 {
     _defaultProperty = "AssemblyFile";
     _properties      = new PropertySpecCollection();
     _selectedObject  = obj;
     InitPropertyBag();
 }
コード例 #13
0
ファイル: PropertyBag.cs プロジェクト: rajeshwarn/CslaGenFork
 public PropertyBag(CslaObjectInfo[] obj)
 {
     defaultProperty = null;
     properties      = new PropertySpecCollection();
     mSelectedObject = obj;
     InitPropertyBag();
 }
コード例 #14
0
 public DbProviderPropertyBag(DbProvider[] obj)
 {
     _defaultProperty = "Name";
     _properties      = new PropertySpecCollection();
     _selectedObject  = obj;
     InitPropertyBag();
 }
コード例 #15
0
ファイル: PropertyBag.cs プロジェクト: rajeshwarn/CslaGenFork
 public PropertyBag(CslaObjectInfo[] obj, PropertyContext context)
 {
     defaultProperty = "ObjectName";
     properties      = new PropertySpecCollection();
     mSelectedObject = obj;
     propertyContext = context;
     InitPropertyBag();
 }
コード例 #16
0
 /// <summary>
 /// Initializes a new instance of the BusinessRulePropertyBag class.
 /// </summary>
 public BusinessRulePropertyBag()
 {
     _defaultProperty = null;
     _properties      = new PropertySpecCollection();
 }
コード例 #17
0
 /// <summary>
 /// Initializes a new instance of the AssociativeEntityPropertyBag class.
 /// </summary>
 public AssociativeEntityPropertyBag()
 {
     _defaultProperty = null;
     _properties      = new PropertySpecCollection();
 }
コード例 #18
0
 /// <summary>
 /// Initializes a new instance of the PropertyBag class.
 /// </summary>
 public PropertyBag()
 {
     defaultProperty = null;
     properties = new PropertySpecCollection(this);
     m_Security = null;
 }
コード例 #19
0
 /// <summary>
 /// Initializes a new instance of the PropertyBag class.
 /// </summary>
 public PropertyBag(object oTag, string strObjName, SecurityManager oSecurity)
 {
     defaultProperty = null;
     properties = new PropertySpecCollection(this);
     this.Tag = oTag;
     this.ObjectName = strObjName;
     this.SecurityMgr = oSecurity;
 }
コード例 #20
0
 /// <summary>
 /// Initializes a new instance of the CriteriaPropertyBag class.
 /// </summary>
 public CriteriaPropertyBag()
 {
     _defaultProperty = null;
     _properties      = new PropertySpecCollection();
 }
コード例 #21
0
 /// <summary>
 /// Initializes a new instance of the InheritedTypePropertyBag class.
 /// </summary>
 public TypeInfoPropertyBag()
 {
     _defaultProperty = null;
     _properties      = new PropertySpecCollection();
 }
コード例 #22
0
 /// <summary>
 /// Initializes a new instance of the UpdateValuePropertyBag class.
 /// </summary>
 public UpdateValuePropertyBag()
 {
     _defaultProperty = null;
     _properties      = new PropertySpecCollection();
 }
コード例 #23
0
 public PropertyBag(Entity owner)
 {
     defaultProperty = null;
     properties = new PropertySpecCollection();
     this.owner = owner;
 }
コード例 #24
0
 /// <summary>
 /// Initializes a new instance of the DbProviderPropertyBag class.
 /// </summary>
 public DbProviderPropertyBag()
 {
     _defaultProperty = null;
     _properties      = new PropertySpecCollection();
 }
コード例 #25
0
 /// <summary>
 /// Initializes a new instance of the DecoratorArgumentBag class.
 /// </summary>
 public DecoratorArgumentBag()
 {
     _defaultProperty = null;
     _properties      = new PropertySpecCollection();
 }
コード例 #26
0
 /// <summary>
 /// Initializes a new instance of the PropertyBag class.
 /// </summary>
 public PropertyBag()
 {
     defaultProperty = null;
     properties      = new PropertySpecCollection();
 }
コード例 #27
0
 /// <summary>
 /// Initializes a new instance of the InheritedTypePropertyBag class.
 /// </summary>
 public InheritedTypePropertyBag()
 {
     _defaultProperty = null;
     _properties      = new PropertySpecCollection();
 }
コード例 #28
0
ファイル: RuleBag.cs プロジェクト: rajeshwarn/CslaGenFork
 /// <summary>
 /// Initializes a new instance of the RuleBag class.
 /// </summary>
 public RuleBag()
 {
     _defaultProperty = null;
     _properties      = new PropertySpecCollection();
 }
コード例 #29
0
 /// <summary>
 /// Initializes a new instance of the UnitOfWorkPropertyBag class.
 /// </summary>
 public UnitOfWorkPropertyBag()
 {
     _defaultProperty = null;
     _properties      = new PropertySpecCollection();
 }
コード例 #30
0
ファイル: PropertyBag.cs プロジェクト: lishxi/_SharpMap
 /// <summary>
 /// Initializes a new instance of the PropertyBag class.
 /// </summary>
 public PropertyBag()
 {
     defaultProperty = null;
     properties = new PropertySpecCollection();
 }
コード例 #31
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="owner"></param>
 public PropertyBag(Entity owner)
 {
     defaultProperty = null;
     properties      = new PropertySpecCollection();
     this.owner      = owner;
 }