Subversion Repositories SmartDukaan

Rev

Rev 2159 | Rev 2316 | 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
 
2159 chandransh 6
	public static final String EBS_VISA = "1008";
7
	public static final String EBS_MASTERCARD = "1017";
2199 chandransh 8
	public static final String EBS_VISA_ELECTRON = "2000";
2159 chandransh 9
 
10
	public static final String PAYMENT_METHOD = "payMethod";
11
 
12
	public long createPayment(long currentCartId, long userId, long txnId, String paymentOption);
1905 chandransh 13
}