Changeset 3203 for trunk/sources/HeuristicLab.Hive.Server.DataAccess
- Timestamp:
- 03/23/10 10:50:26 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IClientDao.cs
r3011 r3203 7 7 public interface IClientDao: IGenericDao<ClientDto> { 8 8 IEnumerable<ClientDto> FindAllClientsWithoutGroup(); 9 10 9 ClientDto GetClientForJob(Guid jobId); 10 void SetServerSideCalendar(ClientDto client, Guid clientGroupId); 11 11 } 12 12 } -
trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IUptimeCalendarDao.cs
r3022 r3203 8 8 IEnumerable<AppointmentDto> GetUptimeCalendarForResource(Guid resourceId); 9 9 void SetUptimeCalendarForResource(Guid resourceId, IEnumerable<AppointmentDto> appointments); 10 10 void NotifyClientsOfNewCalendar(Guid groupId, bool forcePush); 11 IEnumerable<AppointmentDto> GetCalendarForClient(ClientDto client); 11 12 } 12 13 }
Note: See TracChangeset
for help on using the changeset viewer.