public void TestConsultarPresupuestosTodas()
        {
            DAOPresupuestoFactura servidorSQL = new DAOPresupuestoFactura();
            List<Entidad> listaPresupuesto = servidorSQL.ConsultarPresupuestosTodos();

            Assert.IsNotNull(listaPresupuesto);
            Assert.AreEqual(10, listaPresupuesto.Count);
        }