mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 12:02:40 +00:00
17 lines
337 B
C#
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;
|
|
}
|
|
|
|
|
|
}
|
|
}
|