using DealerSelection.Api.Models; namespace DealerSelection.Api.Infrastructure.CCAvenue; public interface IRepository { Task GetBookingDetail(string bookingId, string transactionId); Task UpdateRefundStatus(int buId,string bookingId, string transactionId,string refundReferenceNo, RefundStatusResponse refundStatusResponse); }