[HttpGet]//[HttpPost]
        public HttpResponseMessage GetPdf()

        {
            var ep = new CreateEParcelcs();

            return(ep.PdfWithhardcodedValue());
        }
        public HttpResponseMessage GetPdf([FromBody] Label label)
        {
            var ep = new CreateEParcelcs();

            return(ep.GetDPF(label));
        }