public bool Guardar(List <ListaPreciosCentrosInfo> precios, int usuarioId)
        {
            var result = false;

            try
            {
                var bl = new ListaPreciosCentrosBL();
                result = bl.Guardar(precios, usuarioId);
            }
            catch (Exception)
            {
                throw;
            }

            return(result);
        }