示例#1
0
 private void attach_Orders(Orders entity)
 {
     this.SendPropertyChanging();
     entity.Customers = this;
 }
示例#2
0
 private void detach_Orders(Orders entity)
 {
     this.SendPropertyChanging();
     entity.Customers = null;
 }
示例#3
0
 partial void DeleteOrders(Orders instance);
示例#4
0
 partial void UpdateOrders(Orders instance);
示例#5
0
 partial void InsertOrders(Orders instance);
示例#6
0
 private void detach_Orders(Orders entity)
 {
     this.SendPropertyChanging();
     entity.Employees = null;
 }
示例#7
0
 private void attach_Orders(Orders entity)
 {
     this.SendPropertyChanging();
     entity.Employees = this;
 }