Ejemplo n.º 1
0
 public void update(Authtype authtype) {
   authtypeDAO.update(authtype);
 }
Ejemplo n.º 2
0
 public void remove(int id) {
   authtypeDAO.delete(id);
 }
Ejemplo n.º 3
0
 public List<Authtype> findAll() {
   return authtypeDAO.findAll();
 }
Ejemplo n.º 4
0
 public Authtype findById(int id) {
   return authtypeDAO.findById(id);
 }
Ejemplo n.º 5
0
 public void add(Authtype authtype) {
   authtypeDAO.save(authtype);
 }