@Override
 public UserProfile findByType(String type) {
   return dao.findByType(type);
 }
 @Override
 public UserProfile findById(int id) {
   return dao.findById(id);
 }
 @Override
 public List<UserProfile> findAll() {
   return dao.findAll();
 }