public async Task <IEnumerable <ReservationDto> > GetYourReservation(int userId, int currentPage, int pageSize)
        {
            var response = await JongSnamServices.GetYourReservationWithHttpMessagesAsync(userId, currentPage, pageSize, CustomHeaders);

            var ReservationDto = await GetRespondDtoHandlerHttpStatus <ReservationDtoBasePagingDto>(response);

            return(ReservationDto.Collection);
        }