Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/10 10:57:21 (14 years ago)
Author:
kgrading
Message:

changed the complete DAL to LINQ 2 SQL (with the exception of the job streaming), did a lot of refactoring, Introduced DTOs (that are named DTOs for better understanding), added the spring.NET Interceptor, reintroduced transactions and cleaned up the whole JobResult thing and updated a part of the config merger (#830)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IPluginInfoAdapter.cs

    r1592 r3011  
    3030  /// The plugin info database adapter
    3131  /// </summary>
    32   public interface IPluginInfoAdapter : IDataAdapter<HivePluginInfo> {
    33     HivePluginInfo GetByNameVersionBuilddate(String name, String version, DateTime buildDate);
     32  public interface IPluginInfoAdapter : IDataAdapter<HivePluginInfoDto> {
     33    HivePluginInfoDto GetByNameVersionBuilddate(String name, String version, DateTime buildDate);
    3434
    35     ICollection<HivePluginInfo> GetOrphanedPluginInfos();
     35    ICollection<HivePluginInfoDto> GetOrphanedPluginInfos();
    3636  }
    3737}
Note: See TracChangeset for help on using the changeset viewer.