public T Adicionar(T item) { try { _rep.Adicionar(item); } catch (Exception e) { throw new Exception("Não foi possível realizar a persistência dos dados! Mensagem: " + e.Message); } return(item); }