public async Task <IEnumerable <GrahpDto> > GraphMonthReservation(int userId, int month, int currentPage, int pageSize)
        {
            var response = await JongSnamServices.GraphMonthReservationWithHttpMessagesAsync(userId, month, currentPage, pageSize, CustomHeaders);

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

            return(ReservationDto.Collection);
        }