You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
343 B
8 lines
343 B
using DealerSelection.Api.Models;
|
|
|
|
namespace DealerSelection.Api.Infrastructure.CCAvenue;
|
|
public interface IRepository
|
|
{
|
|
Task<Dto> GetBookingDetail(string bookingId, string transactionId);
|
|
Task UpdateRefundStatus(int buId,string bookingId, string transactionId,string refundReferenceNo, RefundStatusResponse refundStatusResponse);
|
|
}
|