Beispiel #1
0
 public DegreeModel(Degree d)
 {
     _degree = d;
     populate();
 }
 partial void DeleteDegree(Degree instance);
 partial void UpdateDegree(Degree instance);
 partial void InsertDegree(Degree instance);
		private void detach_Degrees(Degree entity)
		{
			this.SendPropertyChanging();
			entity.Department = null;
		}
		private void attach_Degrees(Degree entity)
		{
			this.SendPropertyChanging();
			entity.Department = this;
		}