public void DarDeBajaPorId(int IdProducto) { bool blnIniObjCon = false; try { blnIniObjCon = InicializaObjConexion(); Productos = new DAL.DALProductos(objDALBase, StrUsuarioSistema); Productos.DardeBajaPorId(IdProducto); } catch { } }
public string Actualizar(BLLProductos P) { string mensaje = ""; DataSet dtsRet = P.ConvierteEntidadDS(); bool blnIniObjCon = false; try { blnIniObjCon = InicializaObjConexion(); Productos = new DAL.DALProductos(objDALBase, StrUsuarioSistema); mensaje = Productos.Guardar("A", dtsRet); } catch (Exception er) { mensaje = "Error: " + er.Message; } return(mensaje); }
public DataSet ConsultarVariedadProductos(int Id, string nombreProducto) { bool blnIniObjCon = false; try { blnIniObjCon = InicializaObjConexion(); Productos = new DAL.DALProductos(objDALBase, StrUsuarioSistema); DataSet dtsRet = Productos.ConsultaVariedades(Id, nombreProducto); return(dtsRet); } catch (Exception err) { throw new Exception(err.Message, err.InnerException); } finally { if (blnIniObjCon) { objDALBase.CierraConexion(); } } }
public DataSet ConsultarCatalogoProductos() { bool blnIniObjCon = false; try { blnIniObjCon = InicializaObjConexion(); Productos = new DAL.DALProductos(objDALBase, StrUsuarioSistema); DataSet dtsRet = Productos.ConsultaCatalogo(); return(dtsRet); } catch (Exception err) { throw new Exception(err.Message, err.InnerException); } finally { if (blnIniObjCon) { objDALBase.CierraConexion(); } } }