Changeset 1468 for trunk/sources/HeuristicLab.DataAccess
- Timestamp:
- 03/31/09 01:33:37 (16 years ago)
- 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 80 80 <ItemGroup> 81 81 <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" /> 83 86 <Compile Include="PersistableObject.cs" /> 84 <Compile Include="Interfaces\ICachedDataAdapter.cs" />85 87 <Compile Include="Interfaces\IDataAdapter.cs" /> 86 88 <Compile Include="Interfaces\IPersistableObject.cs" /> 87 <Compile Include="DBSynchronizer.cs" />88 89 </ItemGroup> 89 90 <ItemGroup> … … 139 140 <ItemGroup> 140 141 <Reference Include="System" /> 142 <Reference Include="System.Data" /> 141 143 <Reference Include="System.Runtime.Serialization"> 142 144 <RequiredTargetFramework>3.0</RequiredTargetFramework> 143 145 </Reference> 146 <Reference Include="System.Xml" /> 144 147 </ItemGroup> 145 148 </Project> -
trunk/sources/HeuristicLab.DataAccess/Interfaces/IDataAdapter.cs
r1449 r1468 23 23 using System.Collections.Generic; 24 24 using System.Text; 25 using System.Data.Common; 25 26 26 27 namespace HeuristicLab.DataAccess.Interfaces { … … 52 53 /// <param name="user"></param> 53 54 bool Delete(ObjT obj); 55 56 /// <summary> 57 /// sets the session 58 /// </summary> 59 ISession Session { set; } 54 60 } 55 61 }
Note: See TracChangeset
for help on using the changeset viewer.