Subversion Repositories SmartDukaan

Rev

Rev 2159 | Go to most recent revision | Details | 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
 
6
	public long createPayment(long currentCartId, long userId, long txnId);
7
}