Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/31/09 01:33:37 (15 years ago)
Author:
svonolfe
Message:

Added transaction management (#527)

Location:
trunk/sources/HeuristicLab.DataAccess
Files:
4 added
3 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataAccess/HeuristicLab.DataAccess.csproj

    r1402 r1468  
    8080  <ItemGroup>
    8181    <Compile Include="DataAccessPlugin.cs" />
    82     <Compile Include="Interfaces\IDBSynchronizer.cs" />
     82    <Compile Include="Interfaces\ISession.cs" />
     83    <Compile Include="Interfaces\ISessionFactory.cs" />
     84    <Compile Include="Interfaces\ITransaction.cs" />
     85    <Compile Include="Interfaces\ITransactionManager.cs" />
    8386    <Compile Include="PersistableObject.cs" />
    84     <Compile Include="Interfaces\ICachedDataAdapter.cs" />
    8587    <Compile Include="Interfaces\IDataAdapter.cs" />
    8688    <Compile Include="Interfaces\IPersistableObject.cs" />
    87     <Compile Include="DBSynchronizer.cs" />
    8889  </ItemGroup>
    8990  <ItemGroup>
     
    139140  <ItemGroup>
    140141    <Reference Include="System" />
     142    <Reference Include="System.Data" />
    141143    <Reference Include="System.Runtime.Serialization">
    142144      <RequiredTargetFramework>3.0</RequiredTargetFramework>
    143145    </Reference>
     146    <Reference Include="System.Xml" />
    144147  </ItemGroup>
    145148</Project>
  • trunk/sources/HeuristicLab.DataAccess/Interfaces/IDataAdapter.cs

    r1449 r1468  
    2323using System.Collections.Generic;
    2424using System.Text;
     25using System.Data.Common;
    2526
    2627namespace HeuristicLab.DataAccess.Interfaces {
     
    5253    /// <param name="user"></param>
    5354    bool Delete(ObjT obj);
     55
     56    /// <summary>
     57    /// sets the session
     58    /// </summary>
     59    ISession Session { set; }
    5460  }
    5561}
Note: See TracChangeset for help on using the changeset viewer.