Exemplo n.º 1
0
        public HttpResponseMessage GetValidatedUbf([FromHeader] int producerId, [FromUri] Guid id)
        {
            var xml = _ubfServise.GetValidatedUbf(producerId, id);

            return(new HttpResponseMessage()
            {
                Content = new StringContent(xml.ToString(), Encoding.UTF8, "application/xml")
            });
        }