public void getPendingShippingPaymentByUserID()
        {
            var _result = _shippingPaymentBL.getPendingShippingPaymentByUserID(171);

            Assert.IsTrue(_result != null, "Unable to get");
        }
 public DTO.ShippingPayment getPendingShippingPaymentByUserID(int userID)
 {
     return(Mapper.Map <DTO.ShippingPayment>(_shippingPayment.getPendingShippingPaymentByUserID(userID)));
 }