public void getShippingPaymentByID()
        {
            var _result = _shippingPaymentBL.getShippingPaymentByID(1);

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