Ejemplo n.º 1
0
 public void excluir()
 {
     try
     {
         objDAL = new CodigoBarraDAL();
         objDAL.excluir(this.pro_codigoBarra);
         objDAL = null;
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 2
0
 public void alterar()
 {
     try
     {
         objDAL = new CodigoBarraDAL();
         objDAL.alterar(this.pro_codigoBarra, this.pro_precoVenda, this.pro_nome);
         objDAL = null;
     }
     catch (Exception)
     {
         throw;
     }
 }