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.Clients.Hive.Slave.Tests/Mocks/MockHiveService.cs

    r5602 r5633  
    342342    #endregion
    343343
     344    #region Appointment Methods
     345    public Guid AddAppointment(Appointment appointment) {
     346      throw new NotImplementedException();
     347    }
     348
     349    public void DeleteAppointment(Guid appointmentId) {
     350      throw new NotImplementedException();
     351    }
     352
     353    public void UpdateAppointment(Appointment appointment) {
     354      throw new NotImplementedException();
     355    }
     356
     357    public List<Appointment> GetScheduleForResource(Guid resourceId) {
     358      throw new NotImplementedException();
     359    }
     360    #endregion
    344361  }
    345362}
Note: See TracChangeset for help on using the changeset viewer.