private void detach_States(State entity)
		{
			this.SendPropertyChanging();
			entity.Country = null;
		}
		private void attach_States(State entity)
		{
			this.SendPropertyChanging();
			entity.Country = this;
		}