public void update(Authtype authtype) { authtypeDAO.update(authtype); }
public void remove(int id) { authtypeDAO.delete(id); }
public List<Authtype> findAll() { return authtypeDAO.findAll(); }
public Authtype findById(int id) { return authtypeDAO.findById(id); }
public void add(Authtype authtype) { authtypeDAO.save(authtype); }