Last change
on this file since 3051 was
3011,
checked in by kgrading, 15 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
|
Rev | Line | |
---|
[3011] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Text;
|
---|
| 4 |
|
---|
| 5 | namespace 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.