Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
Example #1
0
 private void detach_LawVotes(LawVote entity)
 {
     this.SendPropertyChanging();
     entity.Law = null;
 }
Example #2
0
 private void attach_LawVotes(LawVote entity)
 {
     this.SendPropertyChanging();
     entity.Law = this;
 }
Example #3
0
 partial void UpdateLawVote(LawVote instance);
Example #4
0
 partial void DeleteLawVote(LawVote instance);
Example #5
0
 partial void InsertLawVote(LawVote instance);