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