Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/28/10 12:40:34 (14 years ago)
Author:
bfarka
Message:

added field "isLocked" to linq classes (#1055)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Services.Authentication Prototype/Persistence/DataClasses.designer.cs

    r3962 r3968  
    22//------------------------------------------------------------------------------
    33// <auto-generated>
    4 //     This code was generated by a tool.
    5 //     Runtime Version:2.0.50727.4927
     4//     Dieser Code wurde von einem Tool generiert.
     5//     Laufzeitversion:2.0.50727.4927
    66//
    7 //     Changes to this file may cause incorrect behavior and will be lost if
    8 //     the code is regenerated.
     7//     Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
     8//     der Code erneut generiert wird.
    99// </auto-generated>
    1010//------------------------------------------------------------------------------
     
    112112    private string _Comment;
    113113   
     114    private bool _Locked;
     115   
    114116    private EntitySet<HeuristicLabUserRole> _HeuristicLabUserRole;
    115117   
     
    126128    partial void OnCommentChanging(string value);
    127129    partial void OnCommentChanged();
     130    partial void OnLockedChanging(bool value);
     131    partial void OnLockedChanged();
    128132    #endregion
    129133   
     
    246250          this.SendPropertyChanged("Comment");
    247251          this.OnCommentChanged();
     252        }
     253      }
     254    }
     255   
     256    [Column(Storage="_Locked")]
     257    public bool Locked
     258    {
     259      get
     260      {
     261        return this._Locked;
     262      }
     263      set
     264      {
     265        if ((this._Locked != value))
     266        {
     267          this.OnLockedChanging(value);
     268          this.SendPropertyChanging();
     269          this._Locked = value;
     270          this.SendPropertyChanged("Locked");
     271          this.OnLockedChanged();
    248272        }
    249273      }
Note: See TracChangeset for help on using the changeset viewer.