Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
Esempio n. 1
0
 partial void UpdateProducts(Products instance);
Esempio n. 2
0
 partial void DeleteProducts(Products instance);
Esempio n. 3
0
 partial void InsertProducts(Products instance);
Esempio n. 4
0
		private void detach_Products(Products entity)
		{
			this.SendPropertyChanging();
			entity.Categories = null;
		}
Esempio n. 5
0
		private void attach_Products(Products entity)
		{
			this.SendPropertyChanging();
			entity.Categories = this;
		}
Esempio n. 6
0
		private void detach_Products(Products entity)
		{
			this.SendPropertyChanging();
			entity.Suppliers = null;
		}
Esempio n. 7
0
		private void attach_Products(Products entity)
		{
			this.SendPropertyChanging();
			entity.Suppliers = this;
		}