Esempio n. 1
0
        public bool EditarProducto(Entidad producto)
        {
            DAOProducto objDataBase = new DAOProducto();

            try
            {
                objDataBase.EditarProducto(producto);
            }
            catch (ExcepcionProducto e)
            {
                throw e;
            }
            catch (Exception e)
            {
                throw e;
            }
            return(true);
        }