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