Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/03/08 20:32:02 (16 years ago)
Author:
gkronber
Message:

added tables for items and statements, a class for items and methods to create items and statements and to retrieve items. ticket #261 (Items are stored multiple times in the result entries in the CEDMA DB)

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  
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    55    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    6     <ProductVersion>9.0.21022</ProductVersion>
     6    <ProductVersion>9.0.30729</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
    88    <ProjectGuid>{4F9BB789-D561-436B-B226-2BF44B7D0804}</ProjectGuid>
     
    5555  <ItemGroup>
    5656    <Compile Include="AgentEntry.cs" />
     57    <Compile Include="ItemEntry.cs" />
    5758    <Compile Include="OperatorEntry.cs" />
    5859    <Compile Include="ProcessStatus.cs" />
  • trunk/sources/HeuristicLab.CEDMA.DB.Interfaces/IDatabase.cs

    r503 r537  
    2626using System.ServiceModel;
    2727using System.Data;
     28using System.Linq.Expressions;
    2829
    2930namespace HeuristicLab.CEDMA.DB.Interfaces {
     
    8081
    8182    [OperationContract]
    82     OperatorEntry GetOperator(long agentId);
     83    OperatorEntry GetOperator(long id);
    8384
     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);
    8493  }
    8594}
Note: See TracChangeset for help on using the changeset viewer.