/// <summary> /// Update a database row from a class /// </summary> public static void UpdateRowFromGlsfw(ref DataRow row, Glsfw entity) { UpdateRowFromGlsfwBase(ref row, entity); }
/// <summary> /// Build a minimal row from a class (key fields only) /// </summary> public static void BuildMinimalRow(ref DataRow row, Glsfw entity) { GlsfwBase.BuildMinimalRow(ref row, entity); }