Beispiel #1
0
 public List <BookPoint> GetBookPoints(string bookName)
 {
     try
     {
         var reader = new WordFileReader($"{SystemFileNames.BOOK_PATH}\\{bookName}", mLog);
         return(reader.GetBookPoints());
     }
     catch (Exception e)
     {
         mLog.Error($"Exception: {nameof(DocumentService)}.{nameof(GetBookPoints)} - {e}");
     }
     return(new List <BookPoint>());
 }