Vinay Bharathwaj has worked in a variety of roles since 2003. Vinay began their career as a Research Associate at Citigroup e-serve in 2003, followed by a role as Executive Vice President at GAGE International in 2004. In 2006, they co-founded and became the Director of Operations at Green Ventures Advisors. In 2009, they founded and became the Managing Partner at Confluenze Consulting Group. In 2011, they became the CEO and Founder at CarbonNavigator Pte. Ltd. and in 2015, they became the Co-founder & CO-CEO at Stockal.
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.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService userService;
@GetMapping("/list")
public List<User> list() {
return userService.list();
}
}
Sign up to view 0 direct reports
Get started