/// <summary> /// Update a database row from a class /// </summary> public static void UpdateRowFromPdspvendcontcopycriteria(ref DataRow row, Pdspvendcontcopycriteria entity) { row.SetField("clevelcd", entity.clevelcd); row.SetField("contractno", entity.contractno); row.SetField("prod", entity.prod); row.SetField("prodpricety", entity.prodpricety); row.SetField("vendno", entity.vendno); row.SetField("rebtype", entity.rebtype); row.SetField("rebsubty", entity.rebsubty); row.SetField("unit", entity.unit); row.SetField("whse", entity.whse); row.SetField("startdt", entity.startdt); row.SetField("nonstockokfl", entity.nonstockokfl); row.SetField("pd_rowid", entity.pdRowid.ToByteArray()); row.SetField("userfield", entity.userfield); }
public static Pdspvendcontcopycriteria BuildPdspvendcontcopycriteriaFromRow(DataRow row) { Pdspvendcontcopycriteria entity = new Pdspvendcontcopycriteria(); entity.clevelcd = row.IsNull("clevelcd") ? string.Empty : row.Field <string>("clevelcd"); entity.contractno = row.IsNull("contractno") ? string.Empty : row.Field <string>("contractno"); entity.prod = row.IsNull("prod") ? string.Empty : row.Field <string>("prod"); entity.prodpricety = row.IsNull("prodpricety") ? string.Empty : row.Field <string>("prodpricety"); entity.vendno = row.IsNull("vendno") ? decimal.Zero : row.Field <decimal>("vendno"); entity.rebtype = row.IsNull("rebtype") ? string.Empty : row.Field <string>("rebtype"); entity.rebsubty = row.IsNull("rebsubty") ? string.Empty : row.Field <string>("rebsubty"); entity.unit = row.IsNull("unit") ? string.Empty : row.Field <string>("unit"); entity.whse = row.IsNull("whse") ? string.Empty : row.Field <string>("whse"); entity.startdt = row.Field <DateTime?>("startdt"); entity.nonstockokfl = row.Field <bool>("nonstockokfl"); entity.pdRowid = row.Field <byte[]>("pd_rowid").ToStringEncoded(); entity.userfield = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield"); return(entity); }