Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/23/13 10:37:45 (11 years ago)
Author:
pfleck
Message:

#2030
Separated old DTO-Dao from new Dao. DTO-Dao should be replaced completely.
Heartbeat and UpdateTaskState uses new Dao.
DataContext is now closed on ServiceOperation end.

Location:
branches/HivePerformance/sources/HeuristicLab.Services.Hive/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HivePerformance/sources/HeuristicLab.Services.Hive/3.3

    • Property svn:ignore
      •  

        old new  
        22bin
        33obj
         4*.user
  • branches/HivePerformance/sources/HeuristicLab.Services.Hive/3.3/Manager/EventManager.cs

    r9257 r9391  
    3232  /// </summary>
    3333  public class EventManager : IEventManager {
    34     private IHiveDao dao {
    35       get { return ServiceLocator.Instance.HiveDao; }
     34    private IHiveDtoDao dao {
     35      get { return ServiceLocator.Instance.HiveDtoDao; }
    3636    }
    3737    private IAuthorizationManager auth {
     
    7878      //we have to find another way to deal with this. 
    7979      //until then the next line is commented out...
    80       //stats.UserStatistics = dao.GetUserStatistics();
     80      //stats.UserStatistics = dtoDao.GetUserStatistics();
    8181      dao.AddStatistics(stats);
    8282    }
Note: See TracChangeset for help on using the changeset viewer.