Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IUptimeCalendarDao.cs @ 3022

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

added the calendar in the dal and the server console. Works on every Resource (Group / Client) (#908)

File size: 439 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   
11  }
12}
Note: See TracBrowser for help on using the repository browser.