public void getAllShippingPaymentByUserID()
        {
            var _result = _shippingPaymentBL.getAllShippingPaymentByUserID(171, 0, 10);

            Assert.IsTrue(_result != null, "Unable to get");
        }
 public DTO.Paged.PagedShippingPayment getAllShippingPaymentByUserID(int UserID, int skip, int take)
 {
     return(Mapper.Map <DTO.Paged.PagedShippingPayment>(_shippingPayment.getAllShippingPaymentByUserID(UserID, skip, take)));
 }