public async Task <IActionResult> GetCurrentEmployee()
        {
            var userDto = await _usersService.GetUserAsync(User);

            if (userDto == null)
            {
                return(NotFound("User == null"));
            }

            var employeeDto = await _employeesService.GetByIdAsync(userDto.EmployeeId);

            if (employeeDto == null)
            {
                return(NotFound("Employee == null"));
            }

            return(Ok(employeeDto));
        }