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.ADODataAccess/3.2/ClientConfigAdapter.cs

    r2002 r3011  
    1212    DataAdapterBase<
    1313      dsHiveServerTableAdapters.ClientConfigTableAdapter,
    14       ClientConfig,
     14      ClientConfigDto,
    1515      dsHiveServer.ClientConfigRow>,
    1616    IClientConfigAdapter {
     
    2020
    2121    protected override dsHiveServer.ClientConfigRow
    22       ConvertObj(ClientConfig config, dsHiveServer.ClientConfigRow row) {
     22      ConvertObj(ClientConfigDto config, dsHiveServer.ClientConfigRow row) {
    2323      if (row != null && config != null) {
    2424        row.ClientConfigId = config.Id;
    25         row.HeartBeatIntervall = config.HeartBeatIntervall;
    26         row.UpDownTimeCalendar = config.UpDownTimeCalendar;
     25        //Todo: commOut
     26        //row.HeartBeatIntervall = config.HeartBeatIntervall;
     27        //row.UpDownTimeCalendar = config.UpDownTimeCalendar;
    2728
    2829        return row;
     
    3132    }
    3233
    33     protected override ClientConfig ConvertRow(dsHiveServer.ClientConfigRow row, ClientConfig config) {
     34    protected override ClientConfigDto ConvertRow(dsHiveServer.ClientConfigRow row, ClientConfigDto config) {
    3435      if (config != null && row != null) {
    3536        config.Id = row.ClientConfigId;
Note: See TracChangeset for help on using the changeset viewer.