コード例 #1
0
        public void Pay(Order order)
        {
            if (paypal.Authenticate("uCrm", "pw"))
            {
                var userName = Console.ReadLine();
                var password = Console.ReadLine();

                paypal.Pay(order.Amount, order.OrderId, userName, password);
            }
        }
コード例 #2
0
ファイル: PayPalProxy.cs プロジェクト: lenamduytuan/uCRM
 /// <summary>
 /// Authentification of the client system(uCRM)
 /// </summary>
 /// <param name="clientId"></param>
 /// <param name="password"></param>
 /// <returns></returns>
 public bool Authenticate(string clientId, string password)
 {
     return(paypalSystem.Authenticate(clientId, password));
 }