Ejemplo n.º 1
0
 /// <summary>
 /// Checks, if the PDF File exists using the passed DBManager
 /// </summary>
 public bool FileExists(ZebraDBManager manager)
 {
     try
     {
         manager.Archive.GetFile(this);
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }
Ejemplo n.º 2
0
 public String DocumentPath(ZebraDBManager manager)
 {
     return(manager.Archive.GetFile(this).FullName);
 }