public IActionResult PostEmployee(int restaurantId, [FromBody] string userEmail)
        {
            var employee = _employeesService.AddEmployeeByEmail(restaurantId, userEmail);

            return(Ok(employee));
        }