示例#1
0
 private void detach_Book_language(book Book_language_abc)
 {
     OnPropertyChanging("book");
     Book_language_abc.Language_book = null;
 }
示例#2
0
 private void detach_Book_editor(book Book_editor_abc)
 {
     OnPropertyChanging("book");
     Book_editor_abc.Editor_book = null;
 }
示例#3
0
 private void attach_Book_language(book Book_language_abc)
 {
     OnPropertyChanging("book");
     Book_language_abc.Language_book = this;
 }
示例#4
0
 private void attach_Book_editor(book Book_editor_abc)
 {
     OnPropertyChanging("book");
     Book_editor_abc.Editor_book = this;
 }
示例#5
0
 private void detach_Book_shelf(book Book_shelf_abc)
 {
     OnPropertyChanging("book");
     Book_shelf_abc.Shelf_book = null;
 }
示例#6
0
 private void attach_Book_shelf(book Book_shelf_abc)
 {
     OnPropertyChanging("book");
     Book_shelf_abc.Shelf_book = this;
 }
 private void detach_Book_publisher(book Book_publisher_abc)
 {
     OnPropertyChanging("book");
     Book_publisher_abc.Publisher_book = null;
 }
 private void attach_Book_publisher(book Book_publisher_abc)
 {
     OnPropertyChanging("book");
     Book_publisher_abc.Publisher_book = this;
 }