예제 #1
0
 public CollectionFilesController(
     ICollectionFileRepository collectionFileRepository,
     IMapper mapper,
     ILocationTagsUpdaterService locationTagsUpdaterService,
     ICollectionFileService collectionFileService)
 {
     _collectionFileRepository = collectionFileRepository;
     _mapper = mapper;
     _locationTagsUpdaterService = locationTagsUpdaterService;
     _collectionFileService      = collectionFileService;
 }
예제 #2
0
 public FileSystemActualizationService(
     ISourceFolderService sourceFolderService,
     IDestinationFolderService destinationFolderService,
     ICollectionFileService collectionFileService,
     IDbStateService dbStateService,
     IRemoteCommandService remoteCommandService,
     ILogger <FileSystemActualizationService> logger)
 {
     _sourceFolderService      = sourceFolderService;
     _destinationFolderService = destinationFolderService;
     _collectionFileService    = collectionFileService;
     _dbStateService           = dbStateService;
     _remoteCommandService     = remoteCommandService;
     _logger = logger;
 }