Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
 partial void DeleteBreakerChannel(BreakerChannel instance);
 partial void UpdateBreakerChannel(BreakerChannel instance);
		private void detach_BreakerChannels(BreakerChannel entity)
		{
			this.SendPropertyChanging();
			entity.Channel = null;
		}
 partial void InsertBreakerChannel(BreakerChannel instance);
		private void attach_BreakerChannels(BreakerChannel entity)
		{
			this.SendPropertyChanging();
			entity.Channel = this;
		}