public bool Delete(Pais_TO pTO) { bool retorno = false; try { retorno = new Pais_DAO().Delete(pTO); } catch (Exception) { throw; } return(retorno); }
public bool Save(bool pOpcao, Pais_TO pTO) { bool retorno = false; try { if (pOpcao) { retorno = new Pais_DAO().Save(pTO); } else { retorno = new Pais_DAO().Update(pTO); } } catch (Exception) { throw; } return(retorno); }