Subversion Repositories SmartDukaan

Rev

Rev 1905 | Rev 2316 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.serving.services;

public interface IPaymentService {
        public static final long PAYMENT_NOT_CREATED = -1;
        
        public static final String EBS_VISA = "1008";
        public static final String EBS_MASTERCARD = "1017";
        
        public static final String PAYMENT_METHOD = "payMethod";
        
        public long createPayment(long currentCartId, long userId, long txnId, String paymentOption);
}