Exemplo n.º 1
0
 public InOutLineStateDto(InOutLineState state)
 {
     this._state = state;
 }
Exemplo n.º 2
0
 public InOutLineStateDto()
 {
     this._state = new InOutLineState();
 }
Exemplo n.º 3
0
 public static CreateInOutLine ToCreateInOutLine(this InOutLineState state)
 {
     return(state.ToCreateInOutLine <CreateInOutLine>());
 }
Exemplo n.º 4
0
 public static MergePatchInOutLine ToMergePatchInOutLine(this InOutLineState state)
 {
     return(state.ToMergePatchInOutLine <MergePatchInOutLine>());
 }
Exemplo n.º 5
0
 public static RemoveInOutLine ToRemoveInOutLine(this InOutLineState state)
 {
     return(state.ToRemoveInOutLine <RemoveInOutLine>());
 }
Exemplo n.º 6
0
 public static IInOutLineCommand ToCreateOrMergePatchInOutLine(this InOutLineState state)
 {
     return(state.ToCreateOrMergePatchInOutLine <CreateInOutLine, MergePatchInOutLine>());
 }