Exemplo n.º 1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromInvpicks(ref DataRow row, Invpicks entity)
 {
     row.SetField("batch", entity.batch);
     row.SetField("order", entity.order);
     row.SetField("order_suffix", entity.orderSuffix);
     row.SetField("qty", entity.qty);
     row.SetField("lot", entity.lot);
     row.SetField("carton_id", entity.cartonId);
     row.SetField("pickRowID", entity.pickRowID.ToByteArray());
     row.SetField("userfield", entity.userfield);
 }
Exemplo n.º 2
0
        public static Invpicks BuildInvpicksFromRow(DataRow row)
        {
            Invpicks entity = new Invpicks();

            entity.batch       = row.IsNull("batch") ? 0 : row.Field <int>("batch");
            entity.order       = row.IsNull("order") ? string.Empty : row.Field <string>("order");
            entity.orderSuffix = row.IsNull("order_suffix") ? string.Empty : row.Field <string>("order_suffix");
            entity.qty         = row.IsNull("qty") ? decimal.Zero : row.Field <decimal>("qty");
            entity.lot         = row.IsNull("lot") ? string.Empty : row.Field <string>("lot");
            entity.cartonId    = row.IsNull("carton_id") ? string.Empty : row.Field <string>("carton_id");
            entity.pickRowID   = row.Field <byte[]>("pickRowID").ToStringEncoded();
            entity.userfield   = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield");
            return(entity);
        }