Matthew Svanda has worked in the digital media and customer service industries for over 20 years. Matthew began their career in 2000 as a Customer Care Representative for Inbound Calls and Customer Care Associate at AT&T. In 2002, they moved to Rent-A-Center as an Inside/Outside Manager and Account Manager. Matthew then joined Advance America as a Store Manager in 2005. That same year, they also began working at West Telemarketing in various roles, including COS Support Supervisor, Production Team Lead, and Technical Service Representative. In 2010, they became the Director of Operations at Digital Impact Agency, where they focused on creating effective communication and inbound marketing strategies for clients through interactive digital media.
package com.example.demo.controller;
import com.example.demo.model.User;
import com.example.demo.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService userService;
@GetMapping("/all")
public List<User> getAllUsers(){
return userService.getAllUsers();
}
@PostMapping("/add")
public User addUser(@RequestBody User user){
return userService.addUser(user);
}
@GetMapping("/{id}")
public User getUserById(@PathVariable("id") Long id){
return userService.getUserById(id);
}
@DeleteMapping("/{id}")
public void deleteUserById(@PathVariable("id") Long id){
userService.deleteUserById(id);
}
}
Sign up to view 0 direct reports
Get started