public MediaSyncHttpTransferDelegate(IMediaSyncManager syncManager,
                                      INotificationManager notificationManager,
                                      IRepository repository)
 {
     this.syncManager         = syncManager;
     this.notificationManager = notificationManager;
     this.repository          = repository;
 }
Exemple #2
0
 public SyncJob(IMediaSyncManager syncManager,
                IMediaGalleryScanner scanner,
                IHttpTransferManager transfers,
                INotificationManager notifications,
                IMediaSyncDelegate syncDelegate,
                IRepository repository)
 {
     this.syncManager   = syncManager;
     this.scanner       = scanner;
     this.transfers     = transfers;
     this.notifications = notifications;
     this.syncDelegate  = syncDelegate;
     this.repository    = repository;
 }