Example #1
0
 public AttributeUseStateDto(AttributeUseState state)
 {
     this._state = state;
 }
Example #2
0
 public AttributeUseStateDto()
 {
     this._state = new AttributeUseState();
 }
Example #3
0
 public static CreateAttributeUse ToCreateAttributeUse(this AttributeUseState state)
 {
     return(state.ToCreateAttributeUse <CreateAttributeUse>());
 }
Example #4
0
 public static MergePatchAttributeUse ToMergePatchAttributeUse(this AttributeUseState state)
 {
     return(state.ToMergePatchAttributeUse <MergePatchAttributeUse>());
 }
Example #5
0
 public static RemoveAttributeUse ToRemoveAttributeUse(this AttributeUseState state)
 {
     return(state.ToRemoveAttributeUse <RemoveAttributeUse>());
 }
Example #6
0
 public static IAttributeUseCommand ToCreateOrMergePatchAttributeUse(this AttributeUseState state)
 {
     return(state.ToCreateOrMergePatchAttributeUse <CreateAttributeUse, MergePatchAttributeUse>());
 }