Пример #1
0
 public List<MOD_Bodega> SEL_DL_Bodega(int Centro_Atencion)
 {
     try
     {
         this.AbrirConexion();
         AD_Bodega objBodega = new AD_Bodega();
         List<MOD_Bodega> lista = objBodega.SEL_DL_Bodega(this.comando, Centro_Atencion);
         this.CerrarConexion();
         return lista;
     }
     catch (Exception exc)
     {
         this.CerrarConexion();
         throw exc;
     }
 }