package com.hepl.tunefortwo.service;

import java.util.List;

import org.springframework.stereotype.Service;

import com.hepl.tunefortwo.dto.RefundRequestDto;
import com.hepl.tunefortwo.entity.RefundRequest;

@Service
public interface RefundRequestService {
	public String saveRefundRequest(RefundRequestDto refundData);
	
	public List<RefundRequest> getAllRefundRequests();
	
	public List<RefundRequest> getPaymentRequestsByStatus();
	
	public List<RefundRequest> getPaymentRequestsByUserName();
	
	
}
