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