public IActionResult GetDaysForDeviceOnMonth(int deviceId, DateTime date) { var reservationDays = _reservationsService.GetDaysForDeviceOnMonth(deviceId, date); return(Ok(reservationDays)); }