Пример #1
0
 public void update(Authtype authtype) {
   authtypeDAO.update(authtype);
 }
Пример #2
0
 public void remove(int id) {
   authtypeDAO.delete(id);
 }
Пример #3
0
 public List<Authtype> findAll() {
   return authtypeDAO.findAll();
 }
Пример #4
0
 public Authtype findById(int id) {
   return authtypeDAO.findById(id);
 }
Пример #5
0
 public void add(Authtype authtype) {
   authtypeDAO.save(authtype);
 }