Exemplo n.º 1
0
 public static void delete(java.lang.Long id) {
   Time entity = Time.findById(id);
   entity.delete();
   index();
 }
Exemplo n.º 2
0
 public static void edit(java.lang.Long id) {
   Time entity = Time.findById(id);
   render(entity);
 }