Ejemplo n.º 1
0
 /// <summary>
 /// Build a minimal row from a class (key fields only)
 /// </summary>
 public static void BuildMinimalRow(ref DataRow row, VaspsasrvBase entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("shipprod", entity.shipprod);
     row.SetField("whse", entity.whse);
     row.SetField("verno", entity.verno);
     row.SetField("segment", entity.segment);
     row.SetField("sequence", entity.sequence);
     row.SetField("vaspsasrvRowID", entity.rowID.ToByteArray());
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromVaspsasrvBase(ref DataRow row, VaspsasrvBase entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("shipprod", entity.shipprod);
     row.SetField("whse", entity.whse);
     row.SetField("verno", entity.verno);
     row.SetField("segment", entity.segment);
     row.SetField("sequence", entity.sequence);
     row.SetField("ruleequality1", entity.ruleequality1);
     row.SetField("ruleunion1", entity.ruleunion1);
     row.SetField("rulesegment1", entity.rulesegment1);
     row.SetField("rule1", entity.rule1);
     row.SetField("ruleequality2", entity.ruleequality2);
     row.SetField("ruleunion2", entity.ruleunion2);
     row.SetField("rulesegment2", entity.rulesegment2);
     row.SetField("rule2", entity.rule2);
     row.SetField("ruleequality3", entity.ruleequality3);
     row.SetField("ruleunion3", entity.ruleunion3);
     row.SetField("rulesegment3", entity.rulesegment3);
     row.SetField("rule3", entity.rule3);
     row.SetField("ruleequality4", entity.ruleequality4);
     row.SetField("ruleunion4", entity.ruleunion4);
     row.SetField("rulesegment4", entity.rulesegment4);
     row.SetField("rule4", entity.rule4);
     row.SetField("user1", entity.user1);
     row.SetField("user2", entity.user2);
     row.SetField("user3", entity.user3);
     row.SetField("user4", entity.user4);
     row.SetField("user5", entity.user5);
     row.SetField("user6", entity.user6);
     row.SetField("user7", entity.user7);
     row.SetField("user8", entity.user8);
     row.SetField("user9", entity.user9);
     row.SetField("transdt", entity.transdt);
     row.SetField("transtm", entity.transtm);
     row.SetField("transproc", entity.transproc);
     row.SetField("operinit", entity.operinit);
     row.SetField("rulevaliddata", entity.rulevaliddata);
     row.SetField("ruleerrormsg", entity.ruleerrormsg);
     row.SetField("vaspsasrvRowID", entity.rowID.ToByteArray());
 }