public EzSetFormResult( SetFormWithSignatureResult result ) { if (result.item != null) { Item = new EzForm(result.item); } if (result.mold != null) { Mold = new EzMold(result.mold); } if (result.moldModel != null) { MoldModel = new EzMoldModel(result.moldModel); } if (result.formModel != null) { FormModel = new EzFormModel(result.formModel); } }
public EzGetFormResult( GetFormResult result ) { if (result.item != null) { Item = new EzForm(result.item); } if (result.mold != null) { Mold = new EzMold(result.mold); } if (result.moldModel != null) { MoldModel = new EzMoldModel(result.moldModel); } if (result.formModel != null) { FormModel = new EzFormModel(result.formModel); } }
public EzGetFormWithSignatureResult( GetFormWithSignatureResult result ) { if (result.item != null) { Item = new EzForm(result.item); } Body = result.body; Signature = result.signature; if (result.mold != null) { Mold = new EzMold(result.mold); } if (result.moldModel != null) { MoldModel = new EzMoldModel(result.moldModel); } if (result.formModel != null) { FormModel = new EzFormModel(result.formModel); } }