Rev 2159 | Go to most recent revision | Details | Last modification | View Log | RSS feed
package in.shop2020.serving.services;
public interface IPaymentService {
public static final long PAYMENT_NOT_CREATED = -1;
public long createPayment(long currentCartId, long userId, long txnId);
}