Ejemplo n.º 1
0
        private AttributeUseStateEventIdDto NewAttributeUseStateEventId(string attributeId)
        {
            var eId = new AttributeUseStateEventIdDto();

            eId.AttributeSetId      = this.StateEventId.AttributeSetId;
            eId.AttributeId         = attributeId;
            eId.AttributeSetVersion = this.StateEventId.Version;
            return(eId);
        }
Ejemplo n.º 2
0
        public override bool Equals(object obj)
        {
            if (Object.ReferenceEquals(this, obj))
            {
                return(true);
            }

            AttributeUseStateEventIdDto other = obj as AttributeUseStateEventIdDto;

            if (other == null)
            {
                return(false);
            }

            return(true &&
                   Object.Equals(this.AttributeSetId, other.AttributeSetId) &&
                   Object.Equals(this.AttributeId, other.AttributeId) &&
                   Object.Equals(this.AttributeSetVersion, other.AttributeSetVersion)
                   );
        }
 public AttributeUseStateEventIdFlattenedDto(AttributeUseStateEventId val)
 {
     this._value = new AttributeUseStateEventIdDtoWrapper(val);
 }
 public AttributeUseStateEventIdFlattenedDto(AttributeUseStateEventIdDto val)
 {
     this._value = val;
 }
Ejemplo n.º 5
0
 protected AttributeUseStateEventDtoBase(AttributeUseStateEventIdDto stateEventId)
 {
     this.StateEventId = stateEventId;
 }