partial void DeleteUser(User instance);
 partial void UpdateUser(User instance);
		private void detach_User(User entity)
		{
			this.SendPropertyChanging();
			entity.Customer = null;
		}
 partial void InsertUser(User instance);
		private void attach_User(User entity)
		{
			this.SendPropertyChanging();
			entity.Customer = this;
		}