Renu Kumari has three years of work experience. In 2017, they began working as a Business Development Specialist for Sales, SEO & Social Media. In this role, they were responsible for getting inside the mind of clients to create products and services that appealed to them emotionally and rationally. Renu also worked on creating marketing strategies with a mix of outbound and inbound marketing. Prior to this, they were a Business Development Manager at topseos.com from 2016 to 2017. Before that, they worked as a Business Analyst at Iskraemeco from 2013 to 2016.
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 UserServiceImpl implements UserService {
@Autowired
private UserRepository userRepository;
@Override
public List<User> getAllUsers() {
return userRepository.findAll();
}
@Override
public void saveUser(User user) {
userRepository.save(user);
}
@Override
public void deleteUser(Long id) {
userRepository.deleteById(id);
}
@Override
public User getUserById(Long id) {
return userRepository.getOne(id);
}
}
Sign up to view 0 direct reports
Get started
This person is not in any teams