Пример #1
0
 public override void Uninstall(IDictionary savedState)
 {
     base.Uninstall(savedState);
     _customActions.UninstallSettings();
     _customActions.UninstallFedexSettings();
     _customActions.UninstallUpsSettings();
     _customActions.UninstallApplicationData();
 }
        public static ActionResult RemoveBaseSettings(Session session)
        {
            _logger.Info(LOG_PREFIX + "RemoveBaseSettings");
            try
            {
                _customActionsHelper.UninstallSettings();
                _customActionsHelper.UninstallFedexSettings();
                _customActionsHelper.UninstallUpsSettings();
                _customActionsHelper.UninstallApplicationData();
            }
            catch (Exception e)
            {
                _logger.Info(LOG_PREFIX + "RemoveBaseSettings" + LOG_POSTFIX + e);
            }

            return(ActionResult.Success);
        }