public async Task <FieldDetailDto> GetFieldById(int id)
        {
            var response = await JongSnamServices.GetFieldByIdWithHttpMessagesAsync(id, CustomHeaders);

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

            return(ReservationDto);
        }