Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/14/10 20:59:36 (14 years ago)
Author:
kgrading
Message:

added the calendar in the dal and the server console. Works on every Resource (Group / Client) (#908)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Core/3.2/DaoLocator.cs

    r3011 r3022  
    1313    [ThreadStatic] private static IJobDao jobDao;
    1414    [ThreadStatic] private static IPluginInfoDao pluginInfoDao;
     15    [ThreadStatic] private static IUptimeCalendarDao uptimeCalendarDao;
    1516
    1617    public static IClientDao ClientDao {
     
    5455    }
    5556
     57    public static IUptimeCalendarDao UptimeCalendarDao {
     58      get {
     59        if (uptimeCalendarDao == null)
     60          uptimeCalendarDao = new UptimeCalendarDao();
     61        return uptimeCalendarDao;
     62      }
     63    }
     64
    5665    public static void DestroyContext() {
    5766      if (ContextFactory.Context != null) {
Note: See TracChangeset for help on using the changeset viewer.