Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/18/15 17:28:03 (9 years ago)
Author:
dglaser
Message:

#2388: Created WebApp.Statistics plugin

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.designer.cs

    r12468 r12477  
    54155415    private string _UserName;
    54165416   
     5417    private System.DateTime _DateCreated;
     5418   
    54175419    private EntitySet<FactTask> _FactTasks;
    54185420   
     
    54295431    partial void OnUserNameChanging(string value);
    54305432    partial void OnUserNameChanged();
     5433    partial void OnDateCreatedChanging(System.DateTime value);
     5434    partial void OnDateCreatedChanged();
    54315435    #endregion
    54325436   
     
    55135517          this.SendPropertyChanged("UserName");
    55145518          this.OnUserNameChanged();
     5519        }
     5520      }
     5521    }
     5522   
     5523    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DateCreated")]
     5524    public System.DateTime DateCreated
     5525    {
     5526      get
     5527      {
     5528        return this._DateCreated;
     5529      }
     5530      set
     5531      {
     5532        if ((this._DateCreated != value))
     5533        {
     5534          this.OnDateCreatedChanging(value);
     5535          this.SendPropertyChanging();
     5536          this._DateCreated = value;
     5537          this.SendPropertyChanged("DateCreated");
     5538          this.OnDateCreatedChanged();
    55155539        }
    55165540      }
Note: See TracChangeset for help on using the changeset viewer.