///	<summary> This method copy's each database field from the <paramref name="source"/> interface to this data row.</summary>
		public void Copy_From(IMMProgrammBlockTiming source, bool includePrimaryKey = false)
		{
			if (includePrimaryKey) this.Id = source.Id;
			this.MMProgrammBlockId = source.MMProgrammBlockId;
			this.TypId = source.TypId;
			this.TimeA = source.TimeA;
			this.TimeB = source.TimeB;
			this.Bemerkung = source.Bemerkung;
			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(IMMProgrammBlockTiming source, params string[] includedColumns)
		{
			if (includedColumns.Contains(MMProgrammBlockTimingsTable.IdCol)) this.Id = source.Id;
			if (includedColumns.Contains(MMProgrammBlockTimingsTable.MMProgrammBlockIdCol)) this.MMProgrammBlockId = source.MMProgrammBlockId;
			if (includedColumns.Contains(MMProgrammBlockTimingsTable.TypIdCol)) this.TypId = source.TypId;
			if (includedColumns.Contains(MMProgrammBlockTimingsTable.TimeACol)) this.TimeA = source.TimeA;
			if (includedColumns.Contains(MMProgrammBlockTimingsTable.TimeBCol)) this.TimeB = source.TimeB;
			if (includedColumns.Contains(MMProgrammBlockTimingsTable.BemerkungCol)) this.Bemerkung = source.Bemerkung;
			if (includedColumns.Contains(MMProgrammBlockTimingsTable.LastUpdateTokenCol)) this.LastUpdateToken = source.LastUpdateToken;
		}
		///	<summary> This method copy's each database field into the <paramref name="target"/> interface. </summary>
		public void Copy_To(IMMProgrammBlockTiming target, bool includePrimaryKey = false)
		{
			if (includePrimaryKey) target.Id = this.Id;
			target.MMProgrammBlockId = this.MMProgrammBlockId;
			target.TypId = this.TypId;
			target.TimeA = this.TimeA;
			target.TimeB = this.TimeB;
			target.Bemerkung = this.Bemerkung;
			target.LastUpdateToken = this.LastUpdateToken;
		}