private void OnUserRoleListRemove(UserRole entity)
 {
     SendPropertyChanging(null);
     entity.User = null;
     SendPropertyChanged(null);
 }
Ejemplo n.º 2
0
 private void OnUserRoleListRemove(UserRole entity)
 {
     SendPropertyChanging(null);
     entity.Role = null;
     SendPropertyChanged(null);
 }
 private void OnUserRoleListAdd(UserRole entity)
 {
     SendPropertyChanging(null);
     entity.User = this;
     SendPropertyChanged(null);
 }
Ejemplo n.º 4
0
 private void OnUserRoleListAdd(UserRole entity)
 {
     SendPropertyChanging(null);
     entity.Role = this;
     SendPropertyChanged(null);
 }