Пример #1
0
 public InOutLineStateDto(InOutLineState state)
 {
     this._state = state;
 }
Пример #2
0
 public InOutLineStateDto()
 {
     this._state = new InOutLineState();
 }
Пример #3
0
 public static CreateInOutLine ToCreateInOutLine(this InOutLineState state)
 {
     return(state.ToCreateInOutLine <CreateInOutLine>());
 }
Пример #4
0
 public static MergePatchInOutLine ToMergePatchInOutLine(this InOutLineState state)
 {
     return(state.ToMergePatchInOutLine <MergePatchInOutLine>());
 }
Пример #5
0
 public static RemoveInOutLine ToRemoveInOutLine(this InOutLineState state)
 {
     return(state.ToRemoveInOutLine <RemoveInOutLine>());
 }
Пример #6
0
 public static IInOutLineCommand ToCreateOrMergePatchInOutLine(this InOutLineState state)
 {
     return(state.ToCreateOrMergePatchInOutLine <CreateInOutLine, MergePatchInOutLine>());
 }