How can I implement cancelation of editing an object using MVVM.
For example: I have a list of customers. I choose one customer an click the button \"Edit\", a dialo
Check out the IEditableObject interface. Your Customer class should implement that, and your commands can execute BeginEdit / CancelEdit / EndEdit as appropriate.
Customer
BeginEdit
CancelEdit
EndEdit