Exemple #1
0
 /// <summary>
 /// InvoiceXpress <a href="https://invoicexpress.com/api/proformas/update">Proformas Update</a> Method
 /// </summary>
 public static void Update(string apiKey, string accountName, int proformaId, ProformaDto inputData)
 {
     Rest_Update(apiKey, accountName, proformaId, inputData.XmlSerializeToString());
 }
Exemple #2
0
            /// <summary>
            /// InvoiceXpress <a href="https://invoicexpress.com/api/proformas/create">Proformas Create</a> Method
            /// </summary>
            public static ProformaDto Create(string apiKey, string accountName, ProformaDto inputData)
            {
                HttpResponseInfo result = Rest_Create(apiKey, accountName, inputData.XmlSerializeToString());

                return(result.Text.DeserializeXml <ProformaDto>());
            }