Changeset 1944
- Timestamp:
- 05/29/09 12:38:34 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/JobAdapter.cs
r1759 r1944 302 302 } 303 303 304 public ICollection<Job> GetJobsByProject(Guid projectId) { 305 throw new NotImplementedException(); 306 } 307 304 308 protected override void doUpdate(Job obj) { 305 309 base.doUpdate(obj); … … 355 359 return false; 356 360 } 361 357 362 #endregion 358 363 } -
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.