public AttributeValueStateDto(AttributeValueState state)
 {
     this._state = state;
 }
 public AttributeValueStateDto()
 {
     this._state = new AttributeValueState();
 }
 public static CreateAttributeValue ToCreateAttributeValue(this AttributeValueState state)
 {
     return(state.ToCreateAttributeValue <CreateAttributeValue>());
 }
 public static MergePatchAttributeValue ToMergePatchAttributeValue(this AttributeValueState state)
 {
     return(state.ToMergePatchAttributeValue <MergePatchAttributeValue>());
 }
 public static RemoveAttributeValue ToRemoveAttributeValue(this AttributeValueState state)
 {
     return(state.ToRemoveAttributeValue <RemoveAttributeValue>());
 }
 public static IAttributeValueCommand ToCreateOrMergePatchAttributeValue(this AttributeValueState state)
 {
     return(state.ToCreateOrMergePatchAttributeValue <CreateAttributeValue, MergePatchAttributeValue>());
 }