Subversion Repositories SmartDukaan

Rev

Rev 1946 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1946 chandransh 1
package in.shop2020.payment.persistence;
2
 
4600 varun.gupt 3
import java.util.List;
4
 
1946 chandransh 5
import in.shop2020.payment.domain.PaymentGateway;
6
 
7
public interface PaymentGatewayMapper {
8
 
9
	PaymentGateway getPaymentGateway(long id);
10
 
4600 varun.gupt 11
	List<PaymentGateway> getActivePaymentGateways();
1946 chandransh 12
}