source:
trunk/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/IGenericDao.cs
@
2913
Last change on this file since 2913 was 2904, checked in by kgrading, 15 years ago | |
---|---|
File size: 394 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | |
6 | namespace 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.