Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/IGenericDao.cs @ 2904

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

added functionality (#830)

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