private void Run(string filename)
        {
            LoadRecording(filename);
            target = new BlackBox.Demo.App.SimpleAnemic.EmployeeBL();

            salaryInput = (System.Double)GetInputParameterValue("salary");
            salaryOutput = (System.Double)GetOutputParameterValue("salary");

            expected = (System.Collections.Generic.List<BlackBox.Demo.App.SimpleAnemic.EmployeeEntity>)GetReturnValue();
            actual = target.GetEmployeesMakingMoreThan(salaryInput);

            ConfigureComparison(filename);
            CompareObjects(salaryInput, salaryOutput);
            CompareObjects(expected, actual);
        }
        private void Run(string filename)
        {
            LoadRecording(filename);
            target = new BlackBox.Demo.App.SimpleAnemic.EmployeeBL();

            salaryInput  = (System.Double)GetInputParameterValue("salary");
            salaryOutput = (System.Double)GetOutputParameterValue("salary");

            expected = (System.Collections.Generic.List <BlackBox.Demo.App.SimpleAnemic.EmployeeEntity>)GetReturnValue();
            actual   = target.GetEmployeesMakingMoreThan(salaryInput);

            ConfigureComparison(filename);
            CompareObjects(salaryInput, salaryOutput);
            CompareObjects(expected, actual);
        }