private void ShowStartDocument()
 {
     _app.Visible = true;
     _wbs         = _app.Workbooks;
     _wb          = _wbs.Open(Path.GetFullPath(PathResolver.GenerateExcelPracticePath(DocumentPath)));
     _wb.Activate();
     _wb.BeforeClose += OnBeforeCloseExcel;
 }