partial void DeleteShow(Show instance);
 partial void UpdateShow(Show instance);
		private void detach_Shows(Show entity)
		{
			this.SendPropertyChanging();
			entity.Room = null;
		}
 partial void InsertShow(Show instance);
		private void attach_Shows(Show entity)
		{
			this.SendPropertyChanging();
			entity.Room = this;
		}