Subversion Repositories SmartDukaan

Rev

Rev 2199 | 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 long createPayment(long currentCartId, long userId, long txnId);
}