Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/28/12 15:46:53 (12 years ago)
Author:
ascheibe
Message:

#1648 worked on user and client information singletons

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ClientUserManagement/HeuristicLab.Services.Access.DataAccess/3.3/ClientManagement.designer.cs

    r6858 r7534  
    33// <auto-generated>
    44//     This code was generated by a tool.
    5 //     Runtime Version:4.0.30319.237
     5//     Runtime Version:4.0.30319.261
    66//
    77//     Changes to this file may cause incorrect behavior and will be lost if
     
    466466    private System.Nullable<System.Guid> _CountryId;
    467467   
     468    private System.Nullable<double> _PerformanceValue;
     469   
    468470    private EntityRef<ClientType> _ClientType;
    469471   
     
    496498    partial void OnCountryIdChanging(System.Nullable<System.Guid> value);
    497499    partial void OnCountryIdChanged();
     500    partial void OnPerformanceValueChanging(System.Nullable<double> value);
     501    partial void OnPerformanceValueChanged();
    498502    #endregion
    499503   
     
    699703          this.SendPropertyChanged("CountryId");
    700704          this.OnCountryIdChanged();
     705        }
     706      }
     707    }
     708   
     709    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PerformanceValue", DbType="real")]
     710    public System.Nullable<double> PerformanceValue
     711    {
     712      get
     713      {
     714        return this._PerformanceValue;
     715      }
     716      set
     717      {
     718        if ((this._PerformanceValue != value))
     719        {
     720          this.OnPerformanceValueChanging(value);
     721          this.SendPropertyChanging();
     722          this._PerformanceValue = value;
     723          this.SendPropertyChanged("PerformanceValue");
     724          this.OnPerformanceValueChanged();
    701725        }
    702726      }
Note: See TracChangeset for help on using the changeset viewer.