public static Apvendorglsave BuildApvendorglsaveFromRow(DataRow row) { Apvendorglsave entity = new Apvendorglsave(); entity.vendno = row.IsNull("vendno") ? decimal.Zero : row.Field <decimal>("vendno"); entity.apcontrolglacct = row.IsNull("apcontrolglacct") ? string.Empty : row.Field <string>("apcontrolglacct"); entity.bankglacct = row.IsNull("bankglacct") ? string.Empty : row.Field <string>("bankglacct"); entity.discountglacct = row.IsNull("discountglacct") ? string.Empty : row.Field <string>("discountglacct"); entity.expense1glacct = row.IsNull("expense1glacct") ? string.Empty : row.Field <string>("expense1glacct"); entity.expense2glacct = row.IsNull("expense2glacct") ? string.Empty : row.Field <string>("expense2glacct"); entity.expense3glacct = row.IsNull("expense3glacct") ? string.Empty : row.Field <string>("expense3glacct"); entity.expense1glacct2 = row.IsNull("expense1glacct2") ? string.Empty : row.Field <string>("expense1glacct2"); entity.expense2glacct2 = row.IsNull("expense2glacct2") ? string.Empty : row.Field <string>("expense2glacct2"); entity.user1 = row.IsNull("user1") ? string.Empty : row.Field <string>("user1"); entity.user2 = row.IsNull("user2") ? string.Empty : row.Field <string>("user2"); entity.user3 = row.IsNull("user3") ? string.Empty : row.Field <string>("user3"); entity.user4 = row.IsNull("user4") ? string.Empty : row.Field <string>("user4"); entity.user5 = row.IsNull("user5") ? string.Empty : row.Field <string>("user5"); entity.user6 = row.Field <decimal?>("user6"); entity.user7 = row.Field <decimal?>("user7"); entity.user8 = row.Field <DateTime?>("user8"); entity.user9 = row.Field <DateTime?>("user9"); entity.rowidArsc = row.Field <byte[]>("rowid-arsc").ToStringEncoded(); return(entity); }
/// <summary> /// Update a database row from a class /// </summary> public static void UpdateRowFromApvendorglsave(ref DataRow row, Apvendorglsave entity) { row.SetField("vendno", entity.vendno); row.SetField("apcontrolglacct", entity.apcontrolglacct); row.SetField("bankglacct", entity.bankglacct); row.SetField("discountglacct", entity.discountglacct); row.SetField("expense1glacct", entity.expense1glacct); row.SetField("expense2glacct", entity.expense2glacct); row.SetField("expense3glacct", entity.expense3glacct); row.SetField("expense1glacct2", entity.expense1glacct2); row.SetField("expense2glacct2", entity.expense2glacct2); row.SetField("user1", entity.user1); row.SetField("user2", entity.user2); row.SetField("user3", entity.user3); row.SetField("user4", entity.user4); row.SetField("user5", entity.user5); row.SetField("user6", entity.user6); row.SetField("user7", entity.user7); row.SetField("user8", entity.user8); row.SetField("user9", entity.user9); row.SetField("rowid-arsc", entity.rowidArsc.ToByteArray()); }