Last change
on this file since 4091 was
3220,
checked in by kgrading, 15 years ago
|
improved the DAL further, changed minor details for the presentation (#830)
|
File size:
671 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 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();
|
---|
14 | IEnumerable<Guid> FindAllGroupAndParentGroupIdsForClient(Guid clientId);
|
---|
15 |
|
---|
16 | IEnumerable<ClientGroupDto> FindByName(string res);
|
---|
17 | }
|
---|
18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.