oop_NFS_Andreas/Plattform/Plattform/Global.asax.cs

21 lines
447 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
using System.Data.Entity;
using Plattform.Helper;
namespace Plattform
{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
Database.SetInitializer(new EntitiesContextInitializer());
}
}
}