Example #1
0
 partial void DeleteCustomer(Customer instance);
Example #2
0
 partial void UpdateCustomer(Customer instance);
Example #3
0
		private void detach_Customers(Customer entity)
		{
			this.SendPropertyChanging();
			entity.State = null;
		}
Example #4
0
 partial void InsertCustomer(Customer instance);
Example #5
0
		private void attach_Customers(Customer entity)
		{
			this.SendPropertyChanging();
			entity.State = this;
		}