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