Exemplo n.º 1
0
 private void detatch_Reward(Reward reward)
 {
     NotifyPropertyChanging("Reward");
     reward.Category = null;
     NotifyPropertyChanged("Reward");
 }
 private void detach_Reward(Reward item)
 {
     NotifyPropertyChanging("Reward");
     item.Skill = null;
 }
Exemplo n.º 3
0
 private void attach_Reward(Reward reward)
 {
     NotifyPropertyChanging("Reward");
     reward.Category = this;
     NotifyPropertyChanged("Reward");
 }
 private void attach_Reward(Reward item)
 {
     NotifyPropertyChanging("Reward");
     item.Skill = this;
 }