Ejemplo n.º 1
0
        public async Task <IEnumerable <PaymentDto> > GetPaymentByReservationId(int reservationId)
        {
            var response = await JongSnamServices.GetPaymentByReservationIdWithHttpMessagesAsync(reservationId, CustomHeaders);

            var respondModel = await GetRespondDtoHandlerHttpStatus <IEnumerable <PaymentDto> >(response);

            return(respondModel);
        }