コード例 #1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromTotglBase(ref DataRow row, TotglBase entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("jrnlno", entity.jrnlno);
     row.SetField("gldeptno", entity.gldeptno);
     row.SetField("glacctno", entity.glacctno);
     row.SetField("glsubno", entity.glsubno);
     row.SetField("amount", entity.amount);
     row.SetField("baltype", entity.baltype);
     row.SetField("lastinvno", entity.lastinvno);
     row.SetField("lastinvsuf", entity.lastinvsuf);
     row.SetField("gldivno", entity.gldivno);
     row.SetField("glcono", entity.glcono);
     row.SetField("refer", entity.refer);
     row.SetField("orderno", entity.orderno);
     row.SetField("ordersuf", entity.ordersuf);
     row.SetField("exchgrate", entity.exchgrate);
     row.SetField("setno", entity.setno);
     row.SetField("sumtype", entity.sumtype);
     row.SetField("domamount", entity.domamount);
     row.SetField("custno", entity.custno);
     row.SetField("kitamount", entity.kitamount);
     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("totglRowID", entity.rowID.ToByteArray());
 }
コード例 #2
0
 /// <summary>
 /// Build a minimal row from a class (key fields only)
 /// </summary>
 public static void BuildMinimalRow(ref DataRow row, TotglBase entity)
 {
     row.SetField("totglRowID", entity.rowID.ToByteArray());
 }