Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/30/18 12:56:00 (6 years ago)
Author:
jzenisek
Message:

#2839

  • adapted computation of DimClient and FactClientInfo stats
  • adapted web app according to new stats computation
File:
1 edited

Legend:

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

    r15659 r15671  
    37273727    private System.Guid _ResourceId;
    37283728   
    3729     private System.Nullable<System.DateTime> _ExpirationTime;
    3730    
    3731     private System.Nullable<System.Guid> _ResourceGroupId;
    3732    
    3733     private System.Nullable<System.Guid> _ResourceGroup2Id;
    3734    
    3735     private string _GroupName;
    3736    
    3737     private string _GroupName2;
     3729    private System.Nullable<System.Guid> _ParentResourceId;
     3730   
     3731    private string _ResourceType;
     3732   
     3733    private System.DateTime _DateCreated;
     3734   
     3735    private System.Nullable<System.DateTime> _DateExpired;
    37383736   
    37393737    private EntitySet<FactTask> _FactTasks;
     
    37513749    partial void OnResourceIdChanging(System.Guid value);
    37523750    partial void OnResourceIdChanged();
    3753     partial void OnExpirationTimeChanging(System.Nullable<System.DateTime> value);
    3754     partial void OnExpirationTimeChanged();
    3755     partial void OnResourceGroupIdChanging(System.Nullable<System.Guid> value);
    3756     partial void OnResourceGroupIdChanged();
    3757     partial void OnResourceGroup2IdChanging(System.Nullable<System.Guid> value);
    3758     partial void OnResourceGroup2IdChanged();
    3759     partial void OnGroupNameChanging(string value);
    3760     partial void OnGroupNameChanged();
    3761     partial void OnGroupName2Changing(string value);
    3762     partial void OnGroupName2Changed();
     3751    partial void OnParentResourceIdChanging(System.Nullable<System.Guid> value);
     3752    partial void OnParentResourceIdChanged();
     3753    partial void OnResourceTypeChanging(string value);
     3754    partial void OnResourceTypeChanged();
     3755    partial void OnDateCreatedChanging(System.DateTime value);
     3756    partial void OnDateCreatedChanged();
     3757    partial void OnDateExpiredChanging(System.Nullable<System.DateTime> value);
     3758    partial void OnDateExpiredChanged();
    37633759    #endregion
    37643760   
     
    38303826    }
    38313827   
    3832     [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ExpirationTime", DbType="DateTime")]
    3833     public System.Nullable<System.DateTime> ExpirationTime
    3834     {
    3835       get
    3836       {
    3837         return this._ExpirationTime;
    3838       }
    3839       set
    3840       {
    3841         if ((this._ExpirationTime != value))
    3842         {
    3843           this.OnExpirationTimeChanging(value);
    3844           this.SendPropertyChanging();
    3845           this._ExpirationTime = value;
    3846           this.SendPropertyChanged("ExpirationTime");
    3847           this.OnExpirationTimeChanged();
    3848         }
    3849       }
    3850     }
    3851    
    3852     [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResourceGroupId", DbType="UniqueIdentifier")]
    3853     public System.Nullable<System.Guid> ResourceGroupId
    3854     {
    3855       get
    3856       {
    3857         return this._ResourceGroupId;
    3858       }
    3859       set
    3860       {
    3861         if ((this._ResourceGroupId != value))
    3862         {
    3863           this.OnResourceGroupIdChanging(value);
    3864           this.SendPropertyChanging();
    3865           this._ResourceGroupId = value;
    3866           this.SendPropertyChanged("ResourceGroupId");
    3867           this.OnResourceGroupIdChanged();
    3868         }
    3869       }
    3870     }
    3871    
    3872     [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResourceGroup2Id", DbType="UniqueIdentifier")]
    3873     public System.Nullable<System.Guid> ResourceGroup2Id
    3874     {
    3875       get
    3876       {
    3877         return this._ResourceGroup2Id;
    3878       }
    3879       set
    3880       {
    3881         if ((this._ResourceGroup2Id != value))
    3882         {
    3883           this.OnResourceGroup2IdChanging(value);
    3884           this.SendPropertyChanging();
    3885           this._ResourceGroup2Id = value;
    3886           this.SendPropertyChanged("ResourceGroup2Id");
    3887           this.OnResourceGroup2IdChanged();
    3888         }
    3889       }
    3890     }
    3891    
    3892     [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GroupName")]
    3893     public string GroupName
    3894     {
    3895       get
    3896       {
    3897         return this._GroupName;
    3898       }
    3899       set
    3900       {
    3901         if ((this._GroupName != value))
    3902         {
    3903           this.OnGroupNameChanging(value);
    3904           this.SendPropertyChanging();
    3905           this._GroupName = value;
    3906           this.SendPropertyChanged("GroupName");
    3907           this.OnGroupNameChanged();
    3908         }
    3909       }
    3910     }
    3911    
    3912     [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GroupName2")]
    3913     public string GroupName2
    3914     {
    3915       get
    3916       {
    3917         return this._GroupName2;
    3918       }
    3919       set
    3920       {
    3921         if ((this._GroupName2 != value))
    3922         {
    3923           this.OnGroupName2Changing(value);
    3924           this.SendPropertyChanging();
    3925           this._GroupName2 = value;
    3926           this.SendPropertyChanged("GroupName2");
    3927           this.OnGroupName2Changed();
     3828    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ParentResourceId", DbType="UniqueIdentifier")]
     3829    public System.Nullable<System.Guid> ParentResourceId
     3830    {
     3831      get
     3832      {
     3833        return this._ParentResourceId;
     3834      }
     3835      set
     3836      {
     3837        if ((this._ParentResourceId != value))
     3838        {
     3839          this.OnParentResourceIdChanging(value);
     3840          this.SendPropertyChanging();
     3841          this._ParentResourceId = value;
     3842          this.SendPropertyChanged("ParentResourceId");
     3843          this.OnParentResourceIdChanged();
     3844        }
     3845      }
     3846    }
     3847   
     3848    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResourceType", CanBeNull=false)]
     3849    public string ResourceType
     3850    {
     3851      get
     3852      {
     3853        return this._ResourceType;
     3854      }
     3855      set
     3856      {
     3857        if ((this._ResourceType != value))
     3858        {
     3859          this.OnResourceTypeChanging(value);
     3860          this.SendPropertyChanging();
     3861          this._ResourceType = value;
     3862          this.SendPropertyChanged("ResourceType");
     3863          this.OnResourceTypeChanged();
     3864        }
     3865      }
     3866    }
     3867   
     3868    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DateCreated", DbType="DateTime NOT NULL")]
     3869    public System.DateTime DateCreated
     3870    {
     3871      get
     3872      {
     3873        return this._DateCreated;
     3874      }
     3875      set
     3876      {
     3877        if ((this._DateCreated != value))
     3878        {
     3879          this.OnDateCreatedChanging(value);
     3880          this.SendPropertyChanging();
     3881          this._DateCreated = value;
     3882          this.SendPropertyChanged("DateCreated");
     3883          this.OnDateCreatedChanged();
     3884        }
     3885      }
     3886    }
     3887   
     3888    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DateExpired", DbType="DateTime")]
     3889    public System.Nullable<System.DateTime> DateExpired
     3890    {
     3891      get
     3892      {
     3893        return this._DateExpired;
     3894      }
     3895      set
     3896      {
     3897        if ((this._DateExpired != value))
     3898        {
     3899          this.OnDateExpiredChanging(value);
     3900          this.SendPropertyChanging();
     3901          this._DateExpired = value;
     3902          this.SendPropertyChanged("DateExpired");
     3903          this.OnDateExpiredChanged();
    39283904        }
    39293905      }
     
    67226698    }
    67236699   
    6724     [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ParentId", DbType="UniqueIdentifier NOT NULL")]
     6700    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ParentId", DbType="UniqueIdentifier")]
    67256701    public System.Nullable<System.Guid> ParentProjectId
    67266702    {
Note: See TracChangeset for help on using the changeset viewer.