public IActionResult GetEmployee(string email) { var employee = _employeesService.GetEmployeeByEmail(email); return(Ok(employee)); }