- Timestamp:
- 01/14/09 17:29:48 (16 years ago)
- Location:
- branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.DB.Interfaces
- Files:
-
- 2 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.DB.Interfaces/HeuristicLab.CEDMA.DB.Interfaces.csproj
r1116 r1129 70 70 </ItemGroup> 71 71 <ItemGroup> 72 <Compile Include=" IVariableBindings.cs" />72 <Compile Include="Variable.cs" /> 73 73 <Compile Include="Ontology.cs" /> 74 74 <Compile Include="SelectFilter.cs" /> … … 82 82 <Compile Include="HeuristicLabCedmaDbInterfacesPlugin.cs" /> 83 83 <Compile Include="Properties\AssemblyInfo.cs" /> 84 <Compile Include="VariableBindings.cs" /> 84 85 </ItemGroup> 85 86 <ItemGroup> -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.DB.Interfaces/IStore.cs
r1116 r1129 35 35 36 36 [OperationContract] 37 ICollection<IVariableBindings> Select(ICollection<Statement> query); 37 ICollection<VariableBindings> Query(ICollection<Statement> query); 38 39 [OperationContract(Name="QueryN3")] 40 ICollection<VariableBindings> Query(string query); 38 41 } 39 42 } -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.DB.Interfaces/Statement.cs
r544 r1129 32 32 [KnownType(typeof(Entity))] 33 33 [KnownType(typeof(SerializedLiteral))] 34 [KnownType(typeof(Variable))] 34 35 public class Statement { 35 36 [DataMember]
Note: See TracChangeset
for help on using the changeset viewer.