Beispiel #1
0
 // Called during a remove operation
 private void DetachFoto(Foto foto)
 {
     NotifyPropertyChanging("ReceiptFoto");
     foto.ReceiptData = null;
 }
Beispiel #2
0
 // Called during an add operation
 private void AttachFoto(Foto foto)
 {
     NotifyPropertyChanging("ReceiptFoto");
     foto.ReceiptData = this;
 }