public IActionResult GetAllEmployeeById(int id) { var employee = _employeeService.GetEmployeeById(id); if (employee == null) { return(NotFound()); } return(Ok(employee)); }
// GET api/values/5 public IEnumerable <EmployeeInfo> Get(int id) { return(new EmployeeInfo[] { _service.GetEmployeeById(id) }); }