Last change
on this file since 3011 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:
345 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Hive.Server.DataAccess {
|
---|
7 | public interface IClientDao: IGenericDao<ClientDto> {
|
---|
8 | IEnumerable<ClientDto> FindAllClientsWithoutGroup();
|
---|
9 |
|
---|
10 | ClientDto GetClientForJob(Guid jobId);
|
---|
11 | }
|
---|
12 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.