Example #1
0
 partial void Deleterental(rental instance);
Example #2
0
 partial void Updaterental(rental instance);
Example #3
0
 private void detach_rental(rental entity)
 {
     this.SendPropertyChanging();
     entity.clients = null;
 }
Example #4
0
 partial void Insertrental(rental instance);
Example #5
0
 private void attach_rental(rental entity)
 {
     this.SendPropertyChanging();
     entity.clients = this;
 }