Example #1
0
 partial void DeleteState(State instance);
Example #2
0
 partial void UpdateState(State instance);
Example #3
0
		private void detach_States(State entity)
		{
			this.SendPropertyChanging();
			entity.Country = null;
		}
Example #4
0
 partial void InsertState(State instance);
Example #5
0
		private void attach_States(State entity)
		{
			this.SendPropertyChanging();
			entity.Country = this;
		}