Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
Ejemplo n.º 1
0
 partial void DeletePost(Post instance);
Ejemplo n.º 2
0
 public PostDecorator(Post post)
 {
     this.post = post;
 }
Ejemplo n.º 3
0
 partial void UpdatePost(Post instance);
Ejemplo n.º 4
0
 partial void InsertPost(Post instance);
Ejemplo n.º 5
0
		private void detach_Posts(Post entity)
		{
			this.SendPropertyChanging();
			entity.PKCategory = null;
		}
Ejemplo n.º 6
0
		private void attach_Posts(Post entity)
		{
			this.SendPropertyChanging();
			entity.PKCategory = this;
		}
Ejemplo n.º 7
0
		private void detach_Posts(Post entity)
		{
			this.SendPropertyChanging();
			entity.GlobalPrikaz = null;
		}