コード例 #1
0
ファイル: FrmReportes.cs プロジェクト: yorleon/Yorleny
        private void ConsultarProductos()
        {
            this.SetFiltros();
            var vLista = ProductoBL.GetProductosFiltro(this.vProductoFiltro);

            this.SetDataSourceDisponibles(ProductoBL.GetDisponibilidad(this.vProductoFiltro));
        }
コード例 #2
0
ファイル: FrmNuevoPedido.cs プロジェクト: yorleon/Yorleny
 private void ObtenerDisponibles()
 {
     try
     {
         this.vDisponibles = ProductoBL.GetDisponibilidad(new Producto());
     }
     catch (Exception ex) { throw ex; }
 }