ME

Matt Ernst

Corporate Recruiter at Covenant Eyes

Matt Ernst has over 20 years of work experience. Matt began their career in 1997 as an Account Manager at TEKsystems. In 2004, they moved to Federal Mogul Inc. as an Operations Supervisor II. In 2007, they became a Senior Talent Acquisition Specialist at Amway. In 2011, they joined Select Resources as a Senior Technical Recruiter. Matt currently works as a Corporate Recruiter at Covenant Eyes since 2019.

package com.example.demo.controller;

import java.util.List;

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

import org.springframework.web.bind.annotation.DeleteMapping;

import org.springframework.web.bind.annotation.GetMapping;

import org.springframework.web.bind.annotation.PathVariable;

import org.springframework.web.bind.annotation.PostMapping;

import org.springframework.web.bind.annotation.PutMapping;

import org.springframework.web.bind.annotation.RequestBody;

import org.springframework.web.bind.annotation.RestController;

import com.example.demo.model.Employee;

import com.example.demo.service.EmployeeService;

@RestController

public class EmployeeController {

@Autowired

EmployeeService employeeService;

@PostMapping("/employee")

public Employee saveEmployee(@RequestBody Employee employee) {

return employeeService.saveEmployee(employee);

}

@GetMapping("/employee")

public List<Employee> getEmployees(){

return employeeService.getEmployees();

}

@PutMapping("/employee")

public Employee updateEmployee(@RequestBody Employee employee) {

return employeeService.updateEmployee(employee);

}

@DeleteMapping("/employee/{id}")

public void deleteEmployee(@PathVariable int id) {

employeeService.deleteEmployee(id);

}

@GetMapping("/employee/{id}")

public Employee getEmployeeById(@PathVariable int id) {

return employeeService.getEmployeeById(id);

}

}

Links

Previous companies

TEKsystems logo
Amway logo

Timeline

  • Corporate Recruiter

    March, 2019 - present