Example #1
0
 partial void UpdateUser(User instance);
Example #2
0
 partial void DeleteUser(User instance);
Example #3
0
 partial void InsertUser(User instance);
Example #4
0
		private void detach_User(User entity)
		{
			this.SendPropertyChanging();
			entity.Department = null;
		}
Example #5
0
		private void attach_User(User entity)
		{
			this.SendPropertyChanging();
			entity.Department = this;
		}
Example #6
0
		private void detach_Users2(User entity)
		{
			this.SendPropertyChanging();
			entity.Users1 = null;
		}
Example #7
0
		private void attach_Users2(User entity)
		{
			this.SendPropertyChanging();
			entity.Users1 = this;
		}