Last change
on this file since 4076 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 | |
---|
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 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.