Esempio n. 1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromInventoryids(ref DataRow row, Inventoryids entity)
 {
     row.SetField("co_num", entity.coNum);
     row.SetField("wh_num", entity.whNum);
     row.SetField("abs_num", entity.absNum);
     row.SetField("bin_num", entity.binNum);
     row.SetField("pallet_id", entity.palletId);
     row.SetField("lot", entity.lot);
     row.SetField("inventoryRowID", entity.inventoryRowID.ToByteArray());
     row.SetField("userfield", entity.userfield);
 }
Esempio n. 2
0
        public static Inventoryids BuildInventoryidsFromRow(DataRow row)
        {
            Inventoryids entity = new Inventoryids();

            entity.coNum          = row.IsNull("co_num") ? string.Empty : row.Field <string>("co_num");
            entity.whNum          = row.IsNull("wh_num") ? string.Empty : row.Field <string>("wh_num");
            entity.absNum         = row.IsNull("abs_num") ? string.Empty : row.Field <string>("abs_num");
            entity.binNum         = row.IsNull("bin_num") ? string.Empty : row.Field <string>("bin_num");
            entity.palletId       = row.IsNull("pallet_id") ? string.Empty : row.Field <string>("pallet_id");
            entity.lot            = row.IsNull("lot") ? string.Empty : row.Field <string>("lot");
            entity.inventoryRowID = row.Field <byte[]>("inventoryRowID").ToStringEncoded();
            entity.userfield      = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield");
            return(entity);
        }