Subversion Repositories SmartDukaan

Rev

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

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