Last change
on this file since 3046 was
3022,
checked in by kgrading, 15 years ago
|
added the calendar in the dal and the server console. Works on every Resource (Group / Client) (#908)
|
File size:
439 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 |
|
---|
11 | }
|
---|
12 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.