Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/08/11 12:39:33 (13 years ago)
Author:
ascheibe
Message:

#1233 added Appointment/Schedule ws and dao methods

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/ServiceContracts/IHiveService.cs

    r5602 r5633  
    146146    #endregion
    147147
     148    #region Appointment Methods
     149    [OperationContract]
     150    Guid AddAppointment(Appointment appointment);
     151
     152    [OperationContract]
     153    void DeleteAppointment(Guid appointmentId);
     154
     155    [OperationContract]
     156    void UpdateAppointment(Appointment appointment);
     157
     158    [OperationContract]
     159    IEnumerable<Appointment> GetScheduleForResource(Guid resourceId);
     160    #endregion
    148161  }
    149162}
Note: See TracChangeset for help on using the changeset viewer.