Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IClientGroupDao.cs @ 3199

Last change on this file since 3199 was 3018, checked in by kgrading, 15 years ago

added Priority and resource restricted scheduling (#907)

File size: 612 bytes
RevLine 
[3011]1using System;
2using System.Collections.Generic;
3using System.Text;
4using HeuristicLab.Hive.Contracts.BusinessObjects;
5
6namespace HeuristicLab.Hive.Server.DataAccess {
7  public interface IClientGroupDao: IGenericDao<ClientGroupDto> {
8    void AddRessourceToClientGroup(Guid ressource, Guid clientGroupId);
9    void RemoveRessourceFromClientGroup(Guid ressource, Guid clientGroupId);
10
11    IEnumerable<ClientGroupDto> MemberOf(ClientDto client);
12
13    IEnumerable<ClientGroupDto> FindAllWithSubGroupsAndClients();
[3018]14    IEnumerable<Guid> FindAllGroupAndParentGroupIdsForClient(Guid clientId);
[3011]15  }
16}
Note: See TracBrowser for help on using the repository browser.