Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/14/10 20:59:36 (15 years ago)
Author:
kgrading
Message:

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

Location:
trunk/sources/HeuristicLab.Hive.Contracts/3.2
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Contracts/3.2/HeuristicLab.Hive.Contracts-3.2.csproj

    r3011 r3022  
    8787  <ItemGroup>
    8888    <Compile Include="ApplicationConstants.cs" />
     89    <Compile Include="BusinessObjects\AppointmentDto.cs" />
    8990    <Compile Include="BusinessObjects\CachedHivePluginInfoDto.cs" />
    9091    <Compile Include="BusinessObjects\ClientGroupDto.cs" />
     
    100101    <Compile Include="BusinessObjects\ClientDto.cs" />
    101102    <Compile Include="BusinessObjects\ClientConfigDto.cs" />
     103    <Compile Include="RecurrentEvent.cs" />
    102104    <Compile Include="ResponseSerializedJob.cs" />
    103105    <Compile Include="MultiStream.cs" />
  • trunk/sources/HeuristicLab.Hive.Contracts/3.2/Interfaces/IClientManager.cs

    r3011 r3022  
    5555    [OperationContract]
    5656    ResponseList<UpTimeStatisticsDto> GetAllUpTimeStatistics();
     57    [OperationContract]
     58    ResponseList<AppointmentDto> GetUptimeCalendarForResource(Guid guid);
     59
     60    [OperationContract]
     61    Response SetUptimeCalendarForResource(Guid guid, IEnumerable<AppointmentDto> appointments);
    5762  }
    5863}
Note: See TracChangeset for help on using the changeset viewer.