Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/08/11 16:38:28 (13 years ago)
Author:
ascheibe
Message:

#1233 more renaming for more consistency

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.3/Convert.cs

    r6723 r6725  
    4444        State = Convert.ToDto(source.State),
    4545        StateLog = (source.StateLogs == null ? new List<DT.StateLog>() : source.StateLogs.Select(x => Convert.ToDto(x)).OrderBy(x => x.DateTime).ToList()),
    46         IsParentJob = source.IsParentTask,
     46        IsParentTask = source.IsParentTask,
    4747        FinishWhenChildJobsFinished = source.FinishWhenChildJobsFinished,
    4848        Command = Convert.ToDto(source.Command),
     
    7272          target.StateLogs.Add(Convert.ToEntity(sl));
    7373        }
    74         target.IsParentTask = source.IsParentJob;
     74        target.IsParentTask = source.IsParentTask;
    7575        target.FinishWhenChildJobsFinished = source.FinishWhenChildJobsFinished;
    7676        target.Command = Convert.ToEntity(source.Command);
     
    8282    #endregion
    8383
    84     #region JobData
     84    #region TaskData
    8585    public static DT.TaskData ToDto(DB.TaskData source) {
    8686      if (source == null) return null;
     
    133133    #endregion
    134134
    135     #region HiveExperiment
     135    #region Job
    136136    public static DT.Job ToDto(DB.Job source) {
    137137      if (source == null) return null;
Note: See TracChangeset for help on using the changeset viewer.