Christian Paniagua

Co-Founder at Instaboost Media

Christian Paniagua has over 14 years of professional work experience. Christian began their career in 2005 as a Valet for AmeriPark. In 2006, they moved on to become a Sales Representative for The Credit Exchange and Connect Your Home, where they provided swift resolution to customer complaints, ultimately repairing trust and winning loyalty. In 2013, they became a Sales Manager for Conversion Marketing Group. In 2014, they became a Closer for Local Lighthouse. In 2016, they became a Digital Marketing Specialist for AdCom8 and Co-Founder of Instaboost Media, a full service digital marketing agency.

package com.example.demo.service;

import com.example.demo.model.User;

import com.example.demo.repository.UserRepository;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.stereotype.Service;

import java.util.List;

@Service

public class UserService {

@Autowired

private UserRepository userRepository;

public List<User> getAllUsers(){

return userRepository.findAll();

}

public User getUserById(Long id){

return userRepository.findById(id).get();

}

public User saveUser(User user){

return userRepository.save(user);

}

}

Links