Ejemplo n.º 1
0
 public System.Data.DataTable ListarActivo()
 {
     DSucursal_ = new Datos.Sucursal ();
     return DSucursal_.Listar ( "" );
 }
Ejemplo n.º 2
0
 public System.Data.DataTable Listar( string condicion, params object[] args )
 {
     try
     {
         DSucursal_ = new Datos.Sucursal ();
         return DSucursal_.Listar ( condicion, args );
     }
     catch ( System.Exception ex )
     {
         throw new System.Exception ( "Sucursal: Error al listar. \n" + ex.Message );
     }
 }