コード例 #1
0
        public static string T2AmendAck(string fileType)
        {
            var file = "Instance File v1_0 Step 6 T2 PO Amendment Acknowledgement.xml";

            var postbody = new ApiPoCancellation
            {
                PoNumber = new List <string> {
                    "0123456789"
                },
                FileType = fileType
            };

            var content = GetContent <Acknowledgement>(fileType, file, postbody);

            return(content);
        }
コード例 #2
0
        public static string T1Cancel(string fileType)
        {
            var file = "Instance File v1_0 Step 7 PO Cancellation.xml";

            var postbody = new ApiPoCancellation
            {
                PoNumber = new List <string> {
                    "0123456789"
                },
                FileType = fileType
            };

            var content = GetContent <PoCancellation>(fileType, file, postbody);

            return(content);
        }