public ActionResult GenerateFeed(FeedFroogleModel model)
        {
            if (!ModelState.IsValid)
            {
                return(Configure());
            }

            try
            {
                _googleService.CreateFeed();

                model.GenerateFeedResult = _googleService.Helper.Resource("SuccessResult");
            }
            catch (Exception exc)
            {
                NotifyError(exc.Message, true);
            }

            _googleService.SetupModel(model, _googleService.Helper.ScheduledTask);

            return(View("SmartStore.Plugin.Feed.Froogle.Views.FeedFroogle.Configure", model));
        }