Casey Helenihi

Director Carrier Relations at MACH Networks

Casey Helenihi has held various sales and management positions in the wireless industry since 2000. Casey began their career as a Major Account Executive at Sprint Nextel Corp in 2000. In 2005, they moved to Xora / Gearworks, Inc. as a Regional Sales Manager. In 2010, they held two positions concurrently at Actsoft as a Territory Manager and Research In Motion Limited (RIM) as a Carrier Sales Manager. Casey then moved to eRecyclingCorps in 2012 as Global Director - Wholesale Sales and TigerText in 2014 as Channel Sales Manager. Since 2016, they have been the Director Carrier Relations at Mach Networks.

package com.example.demo.controller;

import com.example.demo.dto.UserDTO;

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

UserService userService;

@GetMapping("/getAll")

public List<UserDTO> getAllUsers(){

return userService.getAllUsers();

}

@PostMapping("/add")

public UserDTO addUser(@RequestBody UserDTO userDTO){

return userService.addUser(userDTO);

}

@PutMapping("/update")

public UserDTO updateUser(@RequestBody UserDTO userDTO){

return userService.updateUser(userDTO);

}

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

public void deleteUser(@PathVariable("id") Long id){

userService.deleteUser(id);

}

}

Links

Previous companies

Blackberry logo
Sprint logo

Timeline

  • Director Carrier Relations

    September, 2016 - present