package com.example.demo.repository;

import java.util.List;
import java.util.UUID;

import com.example.demo.entity.Payment;

public interface PaymentCustomTempRepo {

	List<Payment> getallDetails(List<Integer> status, List<String> payment_type,List<UUID> id);
}
