public async Task <IEnumerable <FieldDto> > GetFieldBySearch(double?startPrice, double?toPrice, int?districtId, int?provinceId, int currentPage, int pageSize)
        {
            var response = await JongSnamServices.GetFieldBySearchWithHttpMessagesAsync(startPrice, toPrice, districtId, provinceId, currentPage, pageSize, CustomHeaders);

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

            return(ReservationDto.Collection);
        }