public ImagenesJugadoresDiskPersistenceTest()
 {
     _paths = new AppPathsForTest();
     _imagenesJugadoresDiskPersistence = new ImagenesJugadoresDiskPersistence(_paths);
     _imagePath     = $"{_paths.ImagenesJugadoresAbsolute}/{DNI}.jpg";
     _jugadorBaseVm = new JugadorBaseVM
     {
         Foto = Constantes.puntoRojoBase64ConUriDataJpg,
         DNI  = DNI
     };
 }
Exemple #2
0
 public ImagenesEscudosDiskPersistenceTest()
 {
     _paths = new AppPathsForTest();
     _imagenesEscudosDiskPersistence = new ImagenesEscudosDiskPersistence(_paths);
     _escudoPath = $"{_paths.ImagenesEscudosAbsolute}/{CLUBID}.jpg";
 }
 public BackupDiskPersistenceTest()
 {
     _paths = new AppPathsForTest();
     _backupDiskPersistence = new BackupDiskPersistence(new AppPathsForTest());
 }
 public ImagenesPublicidadDiskPersistenceTest()
 {
     _paths = new AppPathsForTest();
     _imagenesPublicidadDiskPersistence = new ImagenesPublicidadDiskPersistence(_paths);
     _publicidadPath = $"{_paths.ImagenesPublicidadesAbsolute}/{PUBLICIDADID}.jpg";
 }