Example #1
0
        public void GetActiveEmployeesTest()
        {
            var employees = _service.GetEmployees("0140SY42")
                            .ActiveOnly(true)
                            .Find();

            Assert.IsNotNull(employees);
            Assert.IsFalse(employees.Any(p => p.EmploymentStatus != EmploymentStatus.Active));
        }