Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.DataAccess/3.3/IUptimeCalendarDao.cs @ 4092

Last change on this file since 4092 was 3203, checked in by kgrading, 15 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: 574 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 IUptimeCalendarDao: IGenericDao<AppointmentDto> {
8    IEnumerable<AppointmentDto> GetUptimeCalendarForResource(Guid resourceId);
9    void SetUptimeCalendarForResource(Guid resourceId, IEnumerable<AppointmentDto> appointments);
10    void NotifyClientsOfNewCalendar(Guid groupId, bool forcePush);
11    IEnumerable<AppointmentDto> GetCalendarForClient(ClientDto client);
12  }
13}
Note: See TracBrowser for help on using the repository browser.