Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
Esempio n. 1
0
 partial void DeleteEmployeeRank(EmployeeRank instance);
Esempio n. 2
0
 partial void UpdateEmployeeRank(EmployeeRank instance);
Esempio n. 3
0
 partial void InsertEmployeeRank(EmployeeRank instance);
Esempio n. 4
0
		private void detach_EmployeeRanks(EmployeeRank entity)
		{
			this.SendPropertyChanging();
			entity.Rank = null;
		}
Esempio n. 5
0
		private void attach_EmployeeRanks(EmployeeRank entity)
		{
			this.SendPropertyChanging();
			entity.Rank = this;
		}
Esempio n. 6
0
 public EmployeeRankDecorator(EmployeeRank employeeRank)
 {
     this.employeeRank = employeeRank;
 }