Пример #1
0
 static void Main(string[] args)
 {
     Console.WriteLine("lorles");
     OT.Preauthorization p = new OT.Preauthorization();
     OT.preAuthRequest pr = new OT.preAuthRequest();
     OT.FinancialControllerClient fcc = new OT.FinancialControllerClient();
     var bh = new OT.baseHeader();
     var clih = new OT.creditLegalInfoHeader();
     fcc.Preauthorization(
         new OT.preAuthRequest() { weddingCode = null, customerEmailAddress = null, customerPhoneNumber = null, dispatchType = OT.dispatchType.DESPACHO_DOMICILIO },
         new OT.merchantHeader() { },
         new OT.userHeader() { },
         new OT.cardHeader() { },
         new OT.cardPaymentHeader() { },
         new OT.productListHeader() { },
         new OT.riskAssessmentHeader() { },
         new OT.purchaseOrderHeader() { },
         out bh,
         out clih);
     Console.ReadLine();
 }
Пример #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("lorles");
            OT.Preauthorization          p   = new OT.Preauthorization();
            OT.preAuthRequest            pr  = new OT.preAuthRequest();
            OT.FinancialControllerClient fcc = new OT.FinancialControllerClient();
            var bh   = new OT.baseHeader();
            var clih = new OT.creditLegalInfoHeader();

            fcc.Preauthorization(
                new OT.preAuthRequest()
            {
                weddingCode = null, customerEmailAddress = null, customerPhoneNumber = null, dispatchType = OT.dispatchType.DESPACHO_DOMICILIO
            },
                new OT.merchantHeader()
            {
            },
                new OT.userHeader()
            {
            },
                new OT.cardHeader()
            {
            },
                new OT.cardPaymentHeader()
            {
            },
                new OT.productListHeader()
            {
            },
                new OT.riskAssessmentHeader()
            {
            },
                new OT.purchaseOrderHeader()
            {
            },
                out bh,
                out clih);
            Console.ReadLine();
        }