Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/24/12 15:24:24 (12 years ago)
Author:
jkarder
Message:

#1712: initial commit

Location:
branches/HiveTaskScheduler
Files:
1 added
1 edited
1 copied

Legend:

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

    r7916 r8687  
    8282    partial void UpdateResourcePermission(ResourcePermission instance);
    8383    partial void DeleteResourcePermission(ResourcePermission instance);
     84    partial void InsertUserPriority(UserPriority instance);
     85    partial void UpdateUserPriority(UserPriority instance);
     86    partial void DeleteUserPriority(UserPriority instance);
    8487    #endregion
    8588   
     
    247250      {
    248251        return this.GetTable<ResourcePermission>();
     252      }
     253    }
     254   
     255    public System.Data.Linq.Table<UserPriority> UserPriorities
     256    {
     257      get
     258      {
     259        return this.GetTable<UserPriority>();
    249260      }
    250261    }
     
    10871098    }
    10881099   
    1089     [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Resource_SlavePermission", Storage="_ResourcePermissions", ThisKey="ResourceId", OtherKey="ResourceId")]
     1100    [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Resource_ResourcePermission", Storage="_ResourcePermissions", ThisKey="ResourceId", OtherKey="ResourceId")]
    10901101    public EntitySet<ResourcePermission> ResourcePermissions
    10911102    {
     
    43594370    }
    43604371   
    4361     [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Resource_SlavePermission", Storage="_Resource", ThisKey="ResourceId", OtherKey="ResourceId", IsForeignKey=true)]
     4372    [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Resource_ResourcePermission", Storage="_Resource", ThisKey="ResourceId", OtherKey="ResourceId", IsForeignKey=true)]
    43624373    public Resource Resource
    43634374    {
     
    44134424    }
    44144425  }
     4426 
     4427  [global::System.Data.Linq.Mapping.TableAttribute(Name="")]
     4428  public partial class UserPriority : INotifyPropertyChanging, INotifyPropertyChanged
     4429  {
     4430   
     4431    private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
     4432   
     4433    private System.Guid _UserId;
     4434   
     4435    #region Extensibility Method Definitions
     4436    partial void OnLoaded();
     4437    partial void OnValidate(System.Data.Linq.ChangeAction action);
     4438    partial void OnCreated();
     4439    partial void OnUserIdChanging(System.Guid value);
     4440    partial void OnUserIdChanged();
     4441    #endregion
     4442   
     4443    public UserPriority()
     4444    {
     4445      OnCreated();
     4446    }
     4447   
     4448    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserId", DbType="UniqueIdentifier NOT NULL", IsPrimaryKey=true)]
     4449    public System.Guid UserId
     4450    {
     4451      get
     4452      {
     4453        return this._UserId;
     4454      }
     4455      set
     4456      {
     4457        if ((this._UserId != value))
     4458        {
     4459          this.OnUserIdChanging(value);
     4460          this.SendPropertyChanging();
     4461          this._UserId = value;
     4462          this.SendPropertyChanged("UserId");
     4463          this.OnUserIdChanged();
     4464        }
     4465      }
     4466    }
     4467   
     4468    public event PropertyChangingEventHandler PropertyChanging;
     4469   
     4470    public event PropertyChangedEventHandler PropertyChanged;
     4471   
     4472    protected virtual void SendPropertyChanging()
     4473    {
     4474      if ((this.PropertyChanging != null))
     4475      {
     4476        this.PropertyChanging(this, emptyChangingEventArgs);
     4477      }
     4478    }
     4479   
     4480    protected virtual void SendPropertyChanged(String propertyName)
     4481    {
     4482      if ((this.PropertyChanged != null))
     4483      {
     4484        this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
     4485      }
     4486    }
     4487  }
    44154488}
    44164489#pragma warning restore 1591
Note: See TracChangeset for help on using the changeset viewer.