Kathy Vriesema has worked in the accounting field since 2003. Kathy began their career as a Bookkeeper at Select Service Mechanical, Inc. in 2003. In 2014, they moved to Financial Consulting Strategies LLC as an Accounting Bookkeeper. In 2018, they became a Premium Audit Assistant at Western World Insurance Group. Most recently, in 2022, they joined the Hall of Fame Resort & Entertainment Company as an Accountant.
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.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@RestController
public class UserController {
@Autowired
private UserService userService;
@PostMapping("/user")
public User save(@RequestBody User user){
return userService.save(user);
}
@GetMapping("/user")
public List<User> findAll(){
return userService.findAll();
}
}
Sign up to view 0 direct reports
Get started