public HumanResourcesService(ManagedEmployeeDao managedEmployeeDao, GenderDao genderDao, MaritalStatusDao maritalStatusDao, PersonDao personDao, EmployeeDao employeeDao, BusinessEntityDao businessEntityDao)
 {
     _managedEmployeeDao = managedEmployeeDao;
     _genderDao          = genderDao;
     _maritalStatusDao   = maritalStatusDao;
     _personDao          = personDao;
     _employeeDao        = employeeDao;
     _businessEntityDao  = businessEntityDao;
 }
 public void Setup()
 {
     _tested = new BusinessEntityDao();
 }