public async Task Check_If_Employee_Exists()
        {
            ActionResult <bool> result = await _employeesController.CheckExists("32752431");

            Assert.IsNotNull(result);
            Assert.IsNotNull(result.Value);
            Assert.IsTrue(result.Value);
        }