Changeset 537 for trunk/sources/HeuristicLab.CEDMA.DB.Interfaces
- Timestamp:
- 09/03/08 20:32:02 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.CEDMA.DB.Interfaces
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.CEDMA.DB.Interfaces/HeuristicLab.CEDMA.DB.Interfaces.csproj
r416 r537 4 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 <ProductVersion>9.0. 21022</ProductVersion>6 <ProductVersion>9.0.30729</ProductVersion> 7 7 <SchemaVersion>2.0</SchemaVersion> 8 8 <ProjectGuid>{4F9BB789-D561-436B-B226-2BF44B7D0804}</ProjectGuid> … … 55 55 <ItemGroup> 56 56 <Compile Include="AgentEntry.cs" /> 57 <Compile Include="ItemEntry.cs" /> 57 58 <Compile Include="OperatorEntry.cs" /> 58 59 <Compile Include="ProcessStatus.cs" /> -
trunk/sources/HeuristicLab.CEDMA.DB.Interfaces/IDatabase.cs
r503 r537 26 26 using System.ServiceModel; 27 27 using System.Data; 28 using System.Linq.Expressions; 28 29 29 30 namespace HeuristicLab.CEDMA.DB.Interfaces { … … 80 81 81 82 [OperationContract] 82 OperatorEntry GetOperator(long agentId);83 OperatorEntry GetOperator(long id); 83 84 85 [OperationContract] 86 IList<ItemEntry> GetOntologyItems(); 87 88 [OperationContract] 89 IList<ItemEntry> GetItems(Guid predicate, Guid property); 90 91 [OperationContract] 92 void LinkItems(ItemEntry subject, ItemEntry predicate, ItemEntry property); 84 93 } 85 94 }
Note: See TracChangeset
for help on using the changeset viewer.