/// <summary>
 /// Closes the current EA instance.
 /// </summary>
 public void Close()
 {
     try
     {
         currentLlRepository?.CloseFile();
         currentLlRepository?.Exit();
     }
     catch (Exception)
     {
         // ignored
     }
 }