partial void DeleteACCOUNT(ACCOUNT instance);
 partial void UpdateACCOUNT(ACCOUNT instance);
 private void detach_ACCOUNTs(ACCOUNT entity)
 {
     this.SendPropertyChanging();
     entity.ROLE = null;
 }
 partial void InsertACCOUNT(ACCOUNT instance);
 private void attach_ACCOUNTs(ACCOUNT entity)
 {
     this.SendPropertyChanging();
     entity.ROLE = this;
 }