Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IClientDao.cs @ 3203

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

implemented the server on the client, using push & force push, added refresh buttons, added auto calender methods that traverse the tree... (#908)

File size: 418 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using HeuristicLab.Hive.Contracts.BusinessObjects;
5
6namespace HeuristicLab.Hive.Server.DataAccess {
7  public interface IClientDao: IGenericDao<ClientDto> {
8    IEnumerable<ClientDto> FindAllClientsWithoutGroup();
9    ClientDto GetClientForJob(Guid jobId);
10    void SetServerSideCalendar(ClientDto client, Guid clientGroupId);   
11  }
12}
Note: See TracBrowser for help on using the repository browser.