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