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