public MainWindow()
        {
            InitializeComponent();

            _excelRowDataModel       = new ExcelRowDataModelList();
            _codeAnalyzerPreferences = new CodeAnalyzerPreferences();

            _codeAnalyzerPreferences.ExcelFileName = strFilePath.Text;

            codeAnalyzer = new CodeAnalyzerEngine(_excelRowDataModel, _codeAnalyzerPreferences);
        }
 public CodeAnalyzerEngine(ExcelRowDataModelList lstexcelRowdataModel, CodeAnalyzerPreferences codeAnalyzerPreferences)
 {
     _lstexcelRowdataModel    = lstexcelRowdataModel;
     _codeAnalyzerPreferences = codeAnalyzerPreferences;
     _ExcelEngine             = new ExcelEngine();
 }