Files
cs-oo-project/Online Gokkantoor/Gui/Global.asax.cs
Beppe df39b0392c yup
2019-07-04 01:05:11 +02:00

17 lines
337 B
C#

using System.Web;
using Logic;
namespace Gui
{
public class Global : HttpApplication
{
protected void Application_Start()
{
System.Web.HttpContext.Current.Application["logic"] = new LogicLayer();
System.Web.HttpContext.Current.Application["debug"] = false;
}
}
}