public bool Salvar(CategoriaPagamento item) { try { DALVenda DALobj = new DALVenda(); if (DALobj.Salvar(item) == true) { DALobj = null; return(true); } else { DALobj = null; return(false); } } catch (Exception) { return(false); } }