partial void UpdateUser(User instance);
 partial void DeleteUser(User instance);
 partial void InsertUser(User instance);
		private void detach_Users(User entity)
		{
			this.SendPropertyChanging();
			entity.Account = null;
		}
		private void attach_Users(User entity)
		{
			this.SendPropertyChanging();
			entity.Account = this;
		}
		private void detach_Users1(User entity)
		{
			this.SendPropertyChanging();
			entity.User2 = null;
		}
		private void attach_Users1(User entity)
		{
			this.SendPropertyChanging();
			entity.User2 = this;
		}