Paula Andrea Ruiz

Head of Culture and Recruitment at Somos Internet

Paula Andrea Ruiz has a wealth of work experience. Paula Andrea began their career in 2015 as an Analista de Recursos Humanos at Universidad Cooperativa de Colombia. In 2017, they became a Psicóloga at Bienestar Familiar. In 2018, they were Human Resources Coordinator at Romero y Romeros. In 2020, they were Operations Leader at Somos Internet. Finally, in 2019, they founded Fruvix, where they developed and launched an online platform for selling products directly to consumers, developed a website and inventory system, built relationships with product suppliers, built delivery and organization systems for customer deliveries, and ran organic and paid marketing campaigns to attract customers. In 2022, they will become Head of Culture and Recruitment at Somos Internet.

package com.example.demo.controller;

import java.util.ArrayList;

import java.util.List;

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

import org.springframework.http.HttpStatus;

import org.springframework.http.ResponseEntity;

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

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.RequestMapping;

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

import com.example.demo.model.Employee;

import com.example.demo.service.EmployeeService;

@RestController

@CrossOrigin

@RequestMapping("/api")

public class EmployeeController {

@Autowired

private EmployeeService employeeService;

@GetMapping("/employees")

public ResponseEntity<List<Employee>> getAllEmployees() {

List<Employee> list = employeeService.getAllEmployees();

return new ResponseEntity<List<Employee>>(list, HttpStatus.OK);

}

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

public ResponseEntity<Employee> getEmployeeById(@PathVariable("id") Long id) {

Employee employee = employeeService.getEmployeeById(id);

return new ResponseEntity<Employee>(employee, HttpStatus.OK);

}

@PostMapping("/employees")

public ResponseEntity<Employee> createEmployee(@RequestBody Employee employee) {

employeeService.createEmployee(employee);

return new ResponseEntity

Links


Timeline

  • Head of Culture and Recruitment

    February, 2022 - present

  • Operations Leader

    January, 2020