Example #1
0
 /// <summary>
 /// Build a minimal row from a class (key fields only)
 /// </summary>
 public static void BuildMinimalRow(ref DataRow row, GlebtBase entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("batchnm", entity.batchnm);
     row.SetField("seqno", entity.seqno);
     row.SetField("glebtRowID", entity.rowID.ToByteArray());
 }
Example #2
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromGlebtBase(ref DataRow row, GlebtBase entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("batchnm", entity.batchnm);
     row.SetField("setno", entity.setno);
     row.SetField("transno", entity.transno);
     row.SetField("transdt", entity.transdt);
     row.SetField("transtm", entity.transtm);
     row.SetField("operinit", entity.operinit);
     row.SetField("amount", entity.amount);
     row.SetField("vendno", entity.vendno);
     row.SetField("custno", entity.custno);
     row.SetField("apinvno", entity.apinvno);
     row.SetField("invno", entity.invno);
     row.SetField("invsuf", entity.invsuf);
     row.SetField("checkno", entity.checkno);
     row.SetField("bankno", entity.bankno);
     row.SetField("transcd", entity.transcd);
     row.SetField("refer", entity.refer);
     row.SetField("postdt", entity.postdt);
     row.SetField("gldivno", entity.gldivno);
     row.SetField("gldeptno", entity.gldeptno);
     row.SetField("glacctno", entity.glacctno);
     row.SetField("glsubno", entity.glsubno);
     row.SetField("yr", entity.yr);
     row.SetField("seqno", entity.seqno);
     row.SetField("crtype", entity.crtype);
     row.SetField("statuscd", entity.statuscd);
     row.SetField("clearfl", entity.clearfl);
     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("transproc", entity.transproc);
     row.SetField("fixjrnlno", entity.fixjrnlno);
     row.SetField("fixsetno", entity.fixsetno);
     row.SetField("glebtRowID", entity.rowID.ToByteArray());
 }