public SettlementMatter( string actionstepOrgKey = "", int actionstepMatterId = 0 ) { ActionstepOrgKey = actionstepOrgKey; ActionstepMatterId = actionstepMatterId; Version = 0; SettlementData = new SettlementInfo(); ActionstepData = new ActionstepMatter(); }
public SettlementMatter( string actionstepOrgKey, int actionstepMatterId, SettlementInfo settlementData, ActionstepMatter actionstepData = null) { ActionstepOrgKey = actionstepOrgKey; ActionstepMatterId = actionstepMatterId; Version = 1; SettlementData = settlementData; ActionstepData = actionstepData; }
public static ActionstepMatter FromString(string dataString) { ActionstepMatter actionstepData = JsonConvert.DeserializeObject <ActionstepMatter>(dataString); return(actionstepData); }