initial commit
[CPE_learningsite] / CPE / CPE.App / CPE.App.Web / Code / BaseController.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Web;
5 using CPE.App.Web.Models;
6
7 namespace CPE.App.Web.Code
8 {
9     public class BaseController : System.Web.Mvc.Controller
10     {
11         public static CPEWebDataContext Database
12         {
13             get { return CPEWebDataContext.GetContext(); }
14         }
15     }
16 }