Add Hangfire

Adjust namespace
This commit is contained in:
2016-11-17 13:36:13 -05:00
parent 88a21593da
commit eeacfebec9
34 changed files with 1007 additions and 38 deletions
+16
View File
@@ -0,0 +1,16 @@
using LeafWeb.Core.DAL;
using Umbraco.Core;
namespace LeafWeb.WebCms.App_Start
{
public class RegisterServices : ApplicationEventHandler
{
protected override void ApplicationStarted(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext)
{
DataService.RegisterInitializer();
HangfireBootstrapper.Instance.Start();
base.ApplicationStarted(umbracoApplication, applicationContext);
}
}
}