Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1944


Ignore:
Timestamp:
05/29/09 12:38:34 (15 years ago)
Author:
svonolfe
Message:

Added Project Adapter (#372)

Location:
trunk/sources
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/JobAdapter.cs

    r1759 r1944  
    302302    }
    303303
     304    public ICollection<Job> GetJobsByProject(Guid projectId) {
     305      throw new NotImplementedException();
     306    }
     307
    304308    protected override void doUpdate(Job obj) {
    305309      base.doUpdate(obj);
     
    355359      return false;
    356360    }
     361
    357362    #endregion
    358363  }
  • trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/HeuristicLab.Hive.Server.DataAccess-3.2.csproj

    r1580 r1944  
    7777  <ItemGroup>
    7878    <Compile Include="IPluginInfoAdapter.cs" />
     79    <Compile Include="IProjectAdapter.cs" />
    7980    <Compile Include="Properties\AssemblyInfo.cs" />
    8081    <Compile Include="HiveServerDataAccessPlugin.cs" />
     
    111112    <None Include="Properties\AssemblyInfo.frame" />
    112113  </ItemGroup>
     114  <ItemGroup>
     115    <Reference Include="System" />
     116    <Reference Include="System.Data" />
     117    <Reference Include="System.Xml" />
     118  </ItemGroup>
    113119</Project>
  • trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IJobAdapter.cs

    r1530 r1944  
    6969    /// <returns></returns>
    7070    ICollection<Job> GetJobsOf(Guid userId);
     71
     72    /// <summary>
     73    /// Gets all jobs of the project
     74    /// </summary>
     75    /// <param name="user"></param>
     76    /// <returns></returns>
     77    ICollection<Job> GetJobsByProject(Guid projectId);
    7178  }
    7279}
Note: See TracChangeset for help on using the changeset viewer.