コード例 #1
0
 public void save(Venda Venda) throws Exception {
   this.id_created = RandomHelper.getIntRandom();
   Venda.setId(this.id_created);
   executar(Venda);
 }
コード例 #2
0
 public void save(Turma Turma) throws Exception {
   Turma.setId(RandomHelper.getIntRandom());
   executar(Turma);
 }