/// <summary> /// Update a database row from a class /// </summary> public static void UpdateRowFromSmsw(ref DataRow row, Smsw entity) { UpdateRowFromSmswBase(ref row, entity); }
/// <summary> /// Build a minimal row from a class (key fields only) /// </summary> public static void BuildMinimalRow(ref DataRow row, Smsw entity) { SmswBase.BuildMinimalRow(ref row, entity); }