Use NVP/SOAP Api from PayPal

This commit is contained in:
Paul Schneider 2017-05-24 23:36:49 +02:00
commit e415e78aaa
33 changed files with 2382 additions and 631 deletions

View file

@ -1,11 +1,14 @@
using PayPal.Api;
using PayPal.PayPalAPIInterfaceService.Model;
using Yavsc.Models.Payment;
namespace Yavsc.ViewModels.PayPal
{
public class PaymentInfo
{
public PaypalPayment DbContent { get; set; }
public Payment FromPaypal { get; set; }
public PayPalPayment DbContent { get; set; }
public virtual GetExpressCheckoutDetailsResponseType DetailsFromPayPal { get; set; }
}
}