Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.2/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IGenericDao.cs @ 3931

Last change on this file since 3931 was 3011, checked in by kgrading, 14 years ago

changed the complete DAL to LINQ 2 SQL (with the exception of the job streaming), did a lot of refactoring, Introduced DTOs (that are named DTOs for better understanding), added the spring.NET Interceptor, reintroduced transactions and cleaned up the whole JobResult thing and updated a part of the config merger (#830)

File size: 365 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace HeuristicLab.Hive.Server.DataAccess {
6  public interface IGenericDao<TBusiness> {
7    TBusiness FindById(Guid id);
8    IEnumerable<TBusiness> FindAll();
9    TBusiness Insert(TBusiness bObj);
10   
11    void Delete(TBusiness bObj);
12
13    void Update(TBusiness bObj);
14  }
15}
Note: See TracBrowser for help on using the repository browser.