Changeset 1944 for trunk/sources/HeuristicLab.Hive.Server.DataAccess
- Timestamp:
- 05/29/09 12:38:34 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/HeuristicLab.Hive.Server.DataAccess-3.2.csproj
r1580 r1944 77 77 <ItemGroup> 78 78 <Compile Include="IPluginInfoAdapter.cs" /> 79 <Compile Include="IProjectAdapter.cs" /> 79 80 <Compile Include="Properties\AssemblyInfo.cs" /> 80 81 <Compile Include="HiveServerDataAccessPlugin.cs" /> … … 111 112 <None Include="Properties\AssemblyInfo.frame" /> 112 113 </ItemGroup> 114 <ItemGroup> 115 <Reference Include="System" /> 116 <Reference Include="System.Data" /> 117 <Reference Include="System.Xml" /> 118 </ItemGroup> 113 119 </Project> -
trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IJobAdapter.cs
r1530 r1944 69 69 /// <returns></returns> 70 70 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); 71 78 } 72 79 }
Note: See TracChangeset
for help on using the changeset viewer.