public async Task <IEnumerable <GrahpDto> > GraphYearReservation(int userId, int year, int currentPage, int pageSize)
        {
            var response = await JongSnamServices.GraphYearReservationWithHttpMessagesAsync(userId, year, currentPage, pageSize, CustomHeaders);

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

            return(ReservationDto.Collection);
        }