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