public bool RegisterOnDat(string fileNameDatabase, string filenameAnime, string filenameComic)
 {
     try
     {
         ColectorsShopDao colectorsShopDao = new ColectorsShopDao(Directory);
         return(colectorsShopDao.GetDataOfRegistrados(fileNameDatabase, filenameAnime, filenameComic));
     }
     catch (Exception e)
     {
         Console.WriteLine(e.Message);
         throw;
     }
 }
 public List <string> GetInformationOfAnime(string fileNameDocument)
 {
     try
     {
         ColectorsShopDao colectorsShopDao = new ColectorsShopDao(Directory);
         return(colectorsShopDao.GetDataOfRegistrados(fileNameDocument));
     }
     catch (Exception e)
     {
         Console.WriteLine(e.Message);
         throw;
     }
 }