示例#1
0
 public GeneratedFile GenerateInvoiceCorrectionRequestXml(string authToken, string boxId, string messageId,
                                                          string attachmentId, InvoiceCorrectionRequestInfo correctionInfo)
 {
     if (boxId == null)
     {
         throw new ArgumentNullException("boxId");
     }
     if (messageId == null)
     {
         throw new ArgumentNullException("messageId");
     }
     if (attachmentId == null)
     {
         throw new ArgumentNullException("attachmentId");
     }
     return(diadocHttpApi.GenerateInvoiceCorrectionRequestXml(authToken, boxId, messageId, attachmentId, correctionInfo));
 }