/// <summary> /// Update a database row from a class /// </summary> public static void UpdateRowFromOeirupdateorder(ref DataRow row, Oeirupdateorder entity) { row.SetField("orderno", entity.orderno); row.SetField("ordersuf", entity.ordersuf); row.SetField("approvty", entity.approvty); row.SetField("ccOverrideMsg", entity.ccOverrideMsg); row.SetField("ccApprovalfl", entity.ccApprovalfl); row.SetField("userfield", entity.userfield); }
public static Oeirupdateorder BuildOeirupdateorderFromRow(DataRow row) { Oeirupdateorder entity = new Oeirupdateorder(); entity.orderno = row.IsNull("orderno") ? 0 : row.Field <int>("orderno"); entity.ordersuf = row.IsNull("ordersuf") ? 0 : row.Field <int>("ordersuf"); entity.approvty = row.IsNull("approvty") ? string.Empty : row.Field <string>("approvty"); entity.ccOverrideMsg = row.IsNull("ccOverrideMsg") ? string.Empty : row.Field <string>("ccOverrideMsg"); entity.ccApprovalfl = row.Field <bool>("ccApprovalfl"); entity.userfield = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield"); return(entity); }