Exemplo n.º 1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromBpehvBase(ref DataRow row, BpehvBase entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("bpid", entity.bpid);
     row.SetField("contactnm", entity.contactnm);
     row.SetField("user9", entity.user9);
     row.SetField("user1", entity.user1);
     row.SetField("user2", entity.user2);
     row.SetField("transdt", entity.transdt);
     row.SetField("transtm", entity.transtm);
     row.SetField("operinit", entity.operinit);
     row.SetField("termstype", entity.termstype);
     row.SetField("vendno", entity.vendno);
     row.SetField("rcvtype", entity.rcvtype);
     row.SetField("notesfl", entity.notesfl);
     row.SetField("user3", entity.user3);
     row.SetField("user5", entity.user5);
     row.SetField("user6", entity.user6);
     row.SetField("user7", entity.user7);
     row.SetField("user8", entity.user8);
     row.SetField("user4", entity.user4);
     row.SetField("shipviaty", entity.shipviaty);
     row.SetField("fobfl", entity.fobfl);
     row.SetField("confirmfl", entity.confirmfl);
     row.SetField("shipfmno", entity.shipfmno);
     row.SetField("transproc", entity.transproc);
     row.SetField("bpehvRowID", entity.rowID.ToByteArray());
 }
Exemplo n.º 2
0
 /// <summary>
 /// Build a minimal row from a class (key fields only)
 /// </summary>
 public static void BuildMinimalRow(ref DataRow row, BpehvBase entity)
 {
     row.SetField("cono", entity.cono);
     row.SetField("bpid", entity.bpid);
     row.SetField("vendno", entity.vendno);
     row.SetField("shipfmno", entity.shipfmno);
     row.SetField("bpehvRowID", entity.rowID.ToByteArray());
 }