/// <inheritdoc />
 public void RequestDiscard(IChangeEntry entry)
 {
     if (m_View.DisplayDialogue(StringAssets.confirmDiscardChangesTitle,
                                StringAssets.confirmDiscardChangeMessage, StringAssets.discardChanges,
                                StringAssets.cancel))
     {
         m_Model.RequestDiscard(entry);
     }
 }
Example #2
0
 public void RequestDiscard(IChangeEntry entry)
 {
     RequestedDiscardCount++;
     RequestedDiscardEntry = entry;
 }
Example #3
0
 /// <inheritdoc />
 public void RequestDiscard(IChangeEntry entry)
 {
     m_Provider.RequestDiscard(entry);
 }
 public void RequestDiscard(IChangeEntry entry)
 {
     throw new NotImplementedException();
 }