// public List <String> ObtenerMarcas() { List <String> marcas = new List <String>(); DAOProducto objDataBase = new DAOProducto(); try { marcas = objDataBase.ConsultarMarcas(); } catch (ExcepcionProducto e) { throw e; } catch (Exception e) { throw e; } return(marcas); }