Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hi all,
please help me to get on from this. I have requirement to add Payment from cart to Purchase order.
For this I tried as below
var purchaseOrder = _orderRepository.Load(orderRef);
var cartPayment = cart.GetFirstForm().Payments.FirstOrDefault();
var POPayment = purchaseOrder.GetFirstForm().Payments.FirstOrDefault();
In both case its getting exception as " Value cannot be null".
Help me to achieve the same.
Thank You!!