Add LeafInput

Add EntityFramework
This commit is contained in:
2016-11-16 11:22:53 -05:00
parent 15911f33c0
commit 88a21593da
14 changed files with 483 additions and 417 deletions
+19
View File
@@ -0,0 +1,19 @@
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);
}
}
}