Subversion Repositories SmartDukaan

Rev

Rev 2199 | Rev 2334 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2199 Rev 2316
Line 1... Line 1...
1
package in.shop2020.serving.services;
1
package in.shop2020.serving.services;
2
 
2
 
3
public interface IPaymentService {
3
public interface IPaymentService {
4
	public static final long PAYMENT_NOT_CREATED = -1;
4
	public static final long PAYMENT_NOT_CREATED = -1;
5
	
5
	
-
 
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
	
6
	public static final String EBS_VISA = "1008";
10
	public static final String EBS_VISA = "1008";
7
	public static final String EBS_MASTERCARD = "1017";
11
	public static final String EBS_MASTERCARD = "1017";
8
	public static final String EBS_VISA_ELECTRON = "2000";
-
 
9
	
12
	
10
	public static final String PAYMENT_METHOD = "payMethod";
13
	public static final String PAYMENT_METHOD = "payMethod";
11
	
14
	
12
	public long createPayment(long currentCartId, long userId, long txnId, String paymentOption);
15
	public long createPayment(long currentCartId, long userId, long txnId, String paymentOption);
13
}
16
}