Files
LeafWeb/WebCms/App_Start/RegisterDataService.cs
T
poprhythm 88a21593da Add LeafInput
Add EntityFramework
2016-11-16 11:22:53 -05:00

19 lines
471 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using LeafWeb.Core.DAL;
using Umbraco.Core;
namespace WebCms.App_Start
{
public class RegisterDataService : ApplicationEventHandler
{
protected override void ApplicationStarted(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext)
{
DataService.RegisterInitializer();
base.ApplicationStarted(umbracoApplication, applicationContext);
}
}
}