Пример #1
0
 public SettlementMatter(
     string actionstepOrgKey = "",
     int actionstepMatterId  = 0
     )
 {
     ActionstepOrgKey   = actionstepOrgKey;
     ActionstepMatterId = actionstepMatterId;
     Version            = 0;
     SettlementData     = new SettlementInfo();
     ActionstepData     = new ActionstepMatter();
 }
Пример #2
0
 public SettlementMatter(
     string actionstepOrgKey,
     int actionstepMatterId,
     SettlementInfo settlementData,
     ActionstepMatter actionstepData = null)
 {
     ActionstepOrgKey   = actionstepOrgKey;
     ActionstepMatterId = actionstepMatterId;
     Version            = 1;
     SettlementData     = settlementData;
     ActionstepData     = actionstepData;
 }
Пример #3
0
        public static ActionstepMatter FromString(string dataString)
        {
            ActionstepMatter actionstepData = JsonConvert.DeserializeObject <ActionstepMatter>(dataString);

            return(actionstepData);
        }