Brian Bosire is a Kenyan entrepreneur and advocate for youth inclusion in leadership. Brian began their career in 2013 as Co-Founder of Electrosoft Ltd, a company that provides innovative solutions for efficient utilization and management of energy, water, and public infrastructure. In 2014, they became a Youth Senator for the Nyamira County in the National Youth Senate, advocating for inclusion of youth in leadership and initiating youth-led activities and development projects. In 2015, they founded UjuziKilimo, a data-driven agronomy platform for smallholder farmers to digitize agricultural and food value chains. In 2017, they became the Founder & CEO of HydroIQ and an Accelerated Founder at Techstars. In 2018, they were appointed as a Young Leader for the Sustainable Development Goals (SDGs) by the United Nations and a One Young World Ambassador. In 2019, they became an Advisory Member of Solutions for Youth Employment (S4YE).
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.RestController;
import java.util.List;
@RestController
public class UserController {
@Autowired
private UserService userService;
@GetMapping("/users")
public List<User> getUsers(){
return userService.getUsers();
}
}
Sign up to view 1 direct report
Get started