Exemplo n.º 1
0
 public async Task <List <BookedTimeSlot> > GetAllReservations(DateTime from, TimeSpan duration)
 {
     return(await _bookingStorage.GetAllReservationsBetweenAsync(from, duration));
 }