Files
Orchard/src/Orchard.Web/Modules/Orchard.Setup/Services/ISetupService.cs
Suha Can e5c821dab3 Injecting RecipeHarvester impl into the safe mode shell
Setup to call the harvester for the recipes list
SetupContext now contains the recipe for the site, which will be executed
Updated minimal,blog and cms recipe files
Added recipe description to the setup view model to keep it between posts in case of errors

--HG--
branch : recipe
2011-02-12 14:57:11 -08:00

11 lines
324 B
C#

using System.Collections.Generic;
using Orchard.Environment.Configuration;
using Orchard.Recipes.Models;
namespace Orchard.Setup.Services {
public interface ISetupService : IDependency {
ShellSettings Prime();
IEnumerable<Recipe> Recipes();
void Setup(SetupContext context);
}
}