Subversion Repositories SmartDukaan

Rev

Rev 2199 | Rev 2334 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1905 chandransh 1
package in.shop2020.serving.services;
2
 
3
public interface IPaymentService {
4
	public static final long PAYMENT_NOT_CREATED = -1;
5
 
2316 chandransh 6
	public static final String HDFC_VISA = "2008";
7
	public static final String HDFC_MASTERCARD = "2017";
8
	public static final String HDFC_VISA_ELECTRON = "2000";
9
 
2159 chandransh 10
	public static final String EBS_VISA = "1008";
11
	public static final String EBS_MASTERCARD = "1017";
12
 
13
	public static final String PAYMENT_METHOD = "payMethod";
14
 
15
	public long createPayment(long currentCartId, long userId, long txnId, String paymentOption);
1905 chandransh 16
}