public IHttpActionResult Get()
        {
            List <Articulo> lista = service.GetAll().ToList();

            return(Ok(lista));
        }