private void detach_flights(flights entity)
		{
			this.SendPropertyChanging();
			entity.routes = null;
		}
 partial void Deleteflights(flights instance);
		private void attach_flights(flights entity)
		{
			this.SendPropertyChanging();
			entity.routes = this;
		}
 partial void Insertflights(flights instance);
 partial void Updateflights(flights instance);
		private void attach_flights(flights entity)
		{
			this.SendPropertyChanging();
			entity.Aircraft = this;
		}
		private void detach_flights(flights entity)
		{
			this.SendPropertyChanging();
			entity.Aircraft = null;
		}
Beispiel #8
0
 private void attach_flights(flights entity)
 {
     this.SendPropertyChanging();
     entity.routes = this;
 }
Beispiel #9
0
 private void detach_flights(flights entity)
 {
     this.SendPropertyChanging();
     entity.routes = null;
 }
Beispiel #10
0
 partial void Deleteflights(flights instance);
Beispiel #11
0
 partial void Updateflights(flights instance);
Beispiel #12
0
 partial void Insertflights(flights instance);
Beispiel #13
0
 private void detach_flights(flights entity)
 {
     this.SendPropertyChanging();
     entity.Aircraft = null;
 }
Beispiel #14
0
 private void attach_flights(flights entity)
 {
     this.SendPropertyChanging();
     entity.Aircraft = this;
 }