public async Task <bool> CancelForDate(DateTime date, string note)
        {
            await _reservationRepository.CancelAllForDate(date, note);

            return(true);
        }