Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/BaseDao.cs @ 3006

Last change on this file since 3006 was 2904, checked in by kgrading, 15 years ago

added functionality (#830)

File size: 296 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Hive.Server.LINQDataAccess {
7  public class BaseDao {
8    public static HiveDataContext Context {
9      get {
10        return ContextFactory.Context;
11      }
12    }
13  }
14}
Note: See TracBrowser for help on using the repository browser.