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