/// <summary> /// Update a database row from a class /// </summary> public static void UpdateRowFromGetlabelprintinvresults(ref DataRow row, Getlabelprintinvresults entity) { 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("rowID", entity.rowID.ToByteArray()); row.SetField("userfield", entity.userfield); }
public static Getlabelprintinvresults BuildGetlabelprintinvresultsFromRow(DataRow row) { Getlabelprintinvresults entity = new Getlabelprintinvresults(); 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.rowID = row.Field <byte[]>("rowID").ToStringEncoded(); entity.userfield = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield"); return(entity); }