コード例 #1
0
 private void ExistenciasProducto(string IDSucursal, string IDProductos)
 {
     try
     {
         Producto DatosAux = new Producto {
             Conexion = Comun.Conexion, IDSucursal = IDSucursal, IDProducto = IDProductos
         };
         Producto_Negocio MN = new Producto_Negocio();
         this._DatosProductos = MN.ObtenerExistentes(DatosAux);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }