Ejemplo n.º 1
0
 public List<MOD_Factura> SEL_Grid_Factura()
 {
     try
     {
         this.AbrirConexion();
         AD_Factura objFactura = new AD_Factura();
         List<MOD_Factura> lista = objFactura.SEL_Grid_Factura(this.comando);
         this.CerrarConexion();
         return lista;
     }
     catch (Exception exc)
     {
         this.CerrarConexion();
         throw exc;
     }
 }