Ejemplo n.º 1
0
        private void CreateNewBook(int firstPage, int lastPage, int countListNotebook)
        {
            PdfHandler pdfHandler = new PdfHandler(Path);
            string newPath = pdfHandler.Handling(firstPage-1, lastPage, FileHelper.GetNotUsedFileName());
            CreateNewBook(1, pdfHandler.CountPages, countListNotebook, newPath);

        }
Ejemplo n.º 2
0
 public void CreateNewBook(int countListNotebook)
 {
     PdfHandler pdfHandler = new PdfHandler(Path);
     string newPath = pdfHandler.Handling(FileHelper.GetNotUsedFileName());
     CreateNewBook(1, pdfHandler.CountPages, countListNotebook, newPath);
 }