public ReservationDtocs DeleteReservation(ReservationResponse reservation)
        {
            ReservationDtocs newReserva = new ReservationDtocs
            {
                IdReservation = reservation.IdReservation,
                DateDue       = reservation.DateDue,
                IdClient      = reservation.IdClient,
                IdEvent       = reservation.IdEvent
            };

            ReservationDtocs reservationDto = _reservationApp.DeleteReservation(newReserva);

            return(reservationDto);
        }
        public ReservationDtocs DeleteReservation(ReservationDtocs reservation)
        {
            ReservationDtocs reservationDto = _resevationRepository.DeleteReservation(reservation);

            return(reservationDto);
        }