Changeset 6452 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DataAccess/3.4/Interfaces
- Timestamp:
- 06/20/11 14:16:53 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DataAccess/3.4/Interfaces/IHiveDao.cs
r6431 r6452 129 129 #endregion 130 130 131 #region AppointmentMethods132 DT. Appointment GetAppointment(Guid id);133 IEnumerable<DT. Appointment> GetAppointments(Expression<Func<UptimeCalendar, bool>> predicate);134 Guid Add Appointment(DT.Appointmentdto);135 void Update Appointment(DT.Appointmentdto);136 void Delete Appointment(Guid id);131 #region Downtime Methods 132 DT.Downtime GetDowntime(Guid id); 133 IEnumerable<DT.Downtime> GetDowntimes(Expression<Func<Downtime, bool>> predicate); 134 Guid AddDowntime(DT.Downtime dto); 135 void UpdateDowntime(DT.Downtime dto); 136 void DeleteDowntime(Guid id); 137 137 #endregion 138 138
Note: See TracChangeset
for help on using the changeset viewer.