We've two domains: Departments and Employees.
Both of them are microservices and we're using an event bus (kafka) to populate events.
As usual, department can have several employees.
Currently, we've implemented "Deleted Deployment" use case.
Which's the best way to check if a department has X employees before remove it?
Note: we want to avoid to make a synchonous call between microservices.