///	<summary> This method copy's each database field from the <paramref name="source"/> interface to this data row.</summary>
		public void Copy_From(IOrtsTeilZuArbeitsgruppe source, bool includePrimaryKey = false)
		{
			if (includePrimaryKey) this.Id = source.Id;
			this.NameId = source.NameId;
			this.HauptGruppe = source.HauptGruppe;
			this.Type = source.Type;
			this.OrtsTeileTypId = source.OrtsTeileTypId;
			this.OrtsTeileId = source.OrtsTeileId;
			this.ArbeitsGruppenId = source.ArbeitsGruppenId;
			this.WordUpRootId = source.WordUpRootId;
			this.LastUpdateToken = source.LastUpdateToken;
		}
		///	<summary> 
		///		This method copy's each database field which is in the <paramref name="includedColumns"/> 
		///		from the <paramref name="source"/> interface to this data row.
		/// </summary>
		public void Copy_From_But_TakeOnly(IOrtsTeilZuArbeitsgruppe source, params string[] includedColumns)
		{
			if (includedColumns.Contains(OrtsTeileZuArbeitsgruppenTable.IdCol)) this.Id = source.Id;
			if (includedColumns.Contains(OrtsTeileZuArbeitsgruppenTable.NameIdCol)) this.NameId = source.NameId;
			if (includedColumns.Contains(OrtsTeileZuArbeitsgruppenTable.HauptGruppeCol)) this.HauptGruppe = source.HauptGruppe;
			if (includedColumns.Contains(OrtsTeileZuArbeitsgruppenTable.TypeCol)) this.Type = source.Type;
			if (includedColumns.Contains(OrtsTeileZuArbeitsgruppenTable.OrtsTeileTypIdCol)) this.OrtsTeileTypId = source.OrtsTeileTypId;
			if (includedColumns.Contains(OrtsTeileZuArbeitsgruppenTable.OrtsTeileIdCol)) this.OrtsTeileId = source.OrtsTeileId;
			if (includedColumns.Contains(OrtsTeileZuArbeitsgruppenTable.ArbeitsGruppenIdCol)) this.ArbeitsGruppenId = source.ArbeitsGruppenId;
			if (includedColumns.Contains(OrtsTeileZuArbeitsgruppenTable.WordUpRootIdCol)) this.WordUpRootId = source.WordUpRootId;
			if (includedColumns.Contains(OrtsTeileZuArbeitsgruppenTable.LastUpdateTokenCol)) this.LastUpdateToken = source.LastUpdateToken;
		}
		///	<summary> This method copy's each database field into the <paramref name="target"/> interface. </summary>
		public void Copy_To(IOrtsTeilZuArbeitsgruppe target, bool includePrimaryKey = false)
		{
			if (includePrimaryKey) target.Id = this.Id;
			target.NameId = this.NameId;
			target.HauptGruppe = this.HauptGruppe;
			target.Type = this.Type;
			target.OrtsTeileTypId = this.OrtsTeileTypId;
			target.OrtsTeileId = this.OrtsTeileId;
			target.ArbeitsGruppenId = this.ArbeitsGruppenId;
			target.WordUpRootId = this.WordUpRootId;
			target.LastUpdateToken = this.LastUpdateToken;
		}