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