A set or event arguments for the INotifyDatabaseChanges.Saving event. This event is used to optionally gather information from all subscribers before Saving.
Inheritance: ValidatingEventArgs
        public void SavePreview()
        {
            var args = new AdditionalInformationRequestedEventArgs();

            Saving?.Invoke(this, args);
        }
 private void OnSavingNotificationReceived(object sender, AdditionalInformationRequestedEventArgs args)
 {
     SyncDataToBudgetService();
     args.Context = CurrentBudget.Model;
 }
 public void SavePreview()
 {
     var args = new AdditionalInformationRequestedEventArgs();
     Saving?.Invoke(this, args);
 }