Justin Biedinger began their career in 1995 as a Cryptologic Technician in the US Navy. In 2004, they joined the Stockton Police Department as a Police Officer, where they conducted a multitude of investigations and worked in partnership with the community to protect property, prevent crime, and improve the quality of life for all citizens. In 2015, they were promoted to Background Investigator, where they conducted background investigations for sworn and non sworn personnel who were applying for a position at the Stockton Police Department. In 2016, they founded Guardian Alliance Technologies, Inc., a cloud-based software system developed specifically for law enforcement agencies to aid background investigators during the hiring process.
package com.example.demo.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.example.demo.dao.UserDao;
import com.example.demo.model.User;
@Service
public class UserService {
@Autowired
UserDao userDao;
public List<User> getUserList(){
return userDao.getUserList();
}
public User getUserById(int id) {
return userDao.getUserById(id);
}
public void saveUser(User user) {
userDao.saveUser(user);
}
public void deleteUser(int id) {
userDao.deleteUser(id);
}
public void updateUser(User user) {
userDao.updateUser(user);
}
}
Sign up to view 0 direct reports
Get started