public IHttpActionResult ListAll()
 {
     try
     {
         Business.Services.ProdutosService service = new Business.Services.ProdutosService();
         return(Ok(service.GetAll()));
     }
     catch (Exception e)
     {
         return(InternalServerError(e));
     }
 }
        public IHttpActionResult Insert(Produto prod)
        {
            try
            {
                Business.Services.ProdutosService service = new Business.Services.ProdutosService();

                service.Insert(prod);
                return(Ok(prod));
            }
            catch (Exception ex)
            {
                return(InternalServerError(ex));
            }
        }