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