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;
		}
Exemple #8
0
 private void attach_flights(flights entity)
 {
     this.SendPropertyChanging();
     entity.routes = this;
 }
Exemple #9
0
 private void detach_flights(flights entity)
 {
     this.SendPropertyChanging();
     entity.routes = null;
 }
Exemple #10
0
 partial void Deleteflights(flights instance);
Exemple #11
0
 partial void Updateflights(flights instance);
Exemple #12
0
 partial void Insertflights(flights instance);
Exemple #13
0
 private void detach_flights(flights entity)
 {
     this.SendPropertyChanging();
     entity.Aircraft = null;
 }
Exemple #14
0
 private void attach_flights(flights entity)
 {
     this.SendPropertyChanging();
     entity.Aircraft = this;
 }