コード例 #1
0
 public StoredFolderService(IStoredFolderRepository <StoredFolderModelBussines <int>, int> storedFolderRepository,
                            IAccountSubscriptionRepository <AccountSubscriptionModelBussines <int>, int> accountSubscriptionRepository,
                            IRootFolderRepository <RootFolderModelBussines <int>, int> rootFolderRepository)
 {
     this._storedFolderRepository        = storedFolderRepository;
     this._accountSubscriptionRepository = accountSubscriptionRepository;
     this._rootFolderRepository          = rootFolderRepository;
 }
コード例 #2
0
 public BinService(IStoredFolderRepository <StoredFolderModelBussines <int>, int> storedFolderRepository,
                   IStoredFileRepository <StoredFileModelBussines <int>, int> storedFileRepository,
                   ISignalRCommunicationService signalRCommunicationService,
                   INotificationRepository <NotificationModelBussines <int>, int> notificationRepository,
                   ISubscriptionCapacityService subscriptionCapacityService
                   )
 {
     this._storedFolderRepository      = storedFolderRepository;
     this._storedFileRepository        = storedFileRepository;
     this._signalRCommunicationService = signalRCommunicationService;
     this._notificationRepository      = notificationRepository;
     this._subscriptionCapacityService = subscriptionCapacityService;
 }
コード例 #3
0
 public SharedFolderService(
     IStoredFolderRepository <StoredFolderModelBussines <int>, int> storedFolderRepository,
     ISharedFolderRepository <SharedFolderModelBussines <int>, int> sharedFolderRepository,
     IAccountRepository <AccountModelBussines <int>, int> accountRepository,
     INotificationRepository <NotificationModelBussines <int>, int> notificationRepository,
     ISignalRCommunicationService signalRCommunicationService,
     IRedisCachingService redisCachingService
     )
 {
     this._storedFolderRepository      = storedFolderRepository;
     this._sharedFolderRepository      = sharedFolderRepository;
     this._accountRepository           = accountRepository;
     this._redisCachingService         = redisCachingService;
     this._notificationRepository      = notificationRepository;
     this._signalRCommunicationService = signalRCommunicationService;
 }
コード例 #4
0
 public StoredFileService(IStoredFileRepository <StoredFileModelBussines <int>, int> storedFileRepository,
                          IStoredFolderRepository <StoredFolderModelBussines <int>, int> storedFolderRepository,
                          IAccountSubscriptionRepository <AccountSubscriptionModelBussines <int>, int> accountSubscriptionRepository,
                          IRootFolderRepository <RootFolderModelBussines <int>, int> rootFolderRepository,
                          ISubscriptionCapacityService subscriptionCapacityService,
                          HostingEnvironmentHelper hostingEnvironmentHelper,
                          ThumbnailHelper thumbnailHelper
                          )
 {
     this._storedFileRepository          = storedFileRepository;
     this._storedFolderRepository        = storedFolderRepository;
     this._accountSubscriptionRepository = accountSubscriptionRepository;
     this._rootFolderRepository          = rootFolderRepository;
     this._hostingEnvironmentHelper      = hostingEnvironmentHelper;
     this._thumbnailHelper             = thumbnailHelper;
     this._subscriptionCapacityService = subscriptionCapacityService;
 }