Exemple #1
0
 public AttributeBase(int?pId, Reference pAttributeName, int?pAttributeNameId, Reference pAttributeType, int?pAttributeTypeId, AttributeInterval pInterval, int?pIntervalId, bool pIsCharacteristic, bool pIsOutcome, bool?pIsPositive, string pUniqueKey) : this(DocConvert.ToInt(pId))
 {
     AttributeName    = pAttributeName;
     AttributeNameId  = pAttributeNameId;
     AttributeType    = pAttributeType;
     AttributeTypeId  = pAttributeTypeId;
     Interval         = pInterval;
     IntervalId       = pIntervalId;
     IsCharacteristic = pIsCharacteristic;
     IsOutcome        = pIsOutcome;
     IsPositive       = pIsPositive;
     UniqueKey        = pUniqueKey;
 }
Exemple #2
0
 public Attribute(int?pId, Reference pAttributeName, int?pAttributeNameId, Reference pAttributeType, int?pAttributeTypeId, AttributeInterval pInterval, int?pIntervalId, bool pIsCharacteristic, bool pIsOutcome, bool?pIsPositive, string pUniqueKey) :
     base(pId, pAttributeName, pAttributeNameId, pAttributeType, pAttributeTypeId, pInterval, pIntervalId, pIsCharacteristic, pIsOutcome, pIsPositive, pUniqueKey)
 {
 }
Exemple #3
0
 public void Deconstruct(out Reference pAttributeName, out int?pAttributeNameId, out Reference pAttributeType, out int?pAttributeTypeId, out AttributeInterval pInterval, out int?pIntervalId, out bool pIsCharacteristic, out bool pIsOutcome, out bool?pIsPositive, out string pUniqueKey)
 {
     pAttributeName    = AttributeName;
     pAttributeNameId  = AttributeNameId;
     pAttributeType    = AttributeType;
     pAttributeTypeId  = AttributeTypeId;
     pInterval         = Interval;
     pIntervalId       = IntervalId;
     pIsCharacteristic = IsCharacteristic;
     pIsOutcome        = IsOutcome;
     pIsPositive       = IsPositive;
     pUniqueKey        = UniqueKey;
 }