Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/04/12 15:38:44 (11 years ago)
Author:
ascheibe
Message:

#1712 merged trunk into branch

Location:
branches/HiveTaskScheduler/HeuristicLab.Services.Hive.DataAccess
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveTaskScheduler/HeuristicLab.Services.Hive.DataAccess

  • branches/HiveTaskScheduler/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.designer.cs

    r8707 r8995  
    21642164    private System.Guid _RecurringId;
    21652165   
     2166    private global::HeuristicLab.Services.Hive.DataAccess.DowntimeType _Type;
     2167   
    21662168    private EntityRef<Resource> _Resource;
    21672169   
     
    21842186    partial void OnRecurringIdChanging(System.Guid value);
    21852187    partial void OnRecurringIdChanged();
     2188    partial void OnDowntimeTypeChanging(global::HeuristicLab.Services.Hive.DataAccess.DowntimeType value);
     2189    partial void OnDowntimeTypeChanged();
    21862190    #endregion
    21872191   
     
    23322336          this.SendPropertyChanged("RecurringId");
    23332337          this.OnRecurringIdChanged();
     2338        }
     2339      }
     2340    }
     2341   
     2342    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Type", DbType="VarChar(MAX)", CanBeNull=false)]
     2343    public global::HeuristicLab.Services.Hive.DataAccess.DowntimeType DowntimeType
     2344    {
     2345      get
     2346      {
     2347        return this._Type;
     2348      }
     2349      set
     2350      {
     2351        if ((this._Type != value))
     2352        {
     2353          this.OnDowntimeTypeChanging(value);
     2354          this.SendPropertyChanging();
     2355          this._Type = value;
     2356          this.SendPropertyChanged("DowntimeType");
     2357          this.OnDowntimeTypeChanged();
    23342358        }
    23352359      }
Note: See TracChangeset for help on using the changeset viewer.