public DebtCollectionServiceCustom(ISubscriberManager subscriberManager, IDebtManager debtManager, IRecordingManager recordingManager,
                                    IMessagingManager messagingManager, ITimeManager timeManager, IDebtCollectionSchemeFactory schemeFactory,
                                    IServiceMessageFactory serviceMessageFactory, DebtCollectionServiceSettings settings, Simbrella.Framework.Logging.Abstractions.ILogger legacyLogger,
                                    ILoggerProvider loggerProvider, IMQProvider mqProvider)
     : base(subscriberManager, debtManager, recordingManager, messagingManager, timeManager, schemeFactory, serviceMessageFactory, settings,
            legacyLogger, loggerProvider, mqProvider)
 {
     _debtManager = (DebtManagerCustom)debtManager;
 }
Esempio n. 2
0
        public override void Init(IDiContainer container,
                               IViewModelManager vmManager,
                               IMessagingManager messagingManager,
                               IPresenter presenter,
                               ILogger logger)
        {
            mContainer = container;
              mLogger = logger;

              MainPage = new ContentPage();
        }
 /// <summary>
 /// コンストラクタ
 /// </summary>
 /// <param name="fileMappingInfoRepository"></param>
 /// <param name="categoryRepository"></param>
 /// <param name="contentRepository"></param>
 /// <param name="thumbnailBuilder"></param>
 public FileUpdateRunner(IFileMappingInfoRepository fileMappingInfoRepository, ICategoryRepository categoryRepository, IContentRepository contentRepository, IThumbnailBuilder thumbnailBuilder, IAppAppMetaInfoRepository appAppMetaInfoRepository, ILabelRepository labelRepository, IMessagingManager messagingManager,
                         IEventLogRepository eventLogRepository)
 {
     this.mFileMappingInfoRepository = fileMappingInfoRepository;
     this.mCategoryRepository        = categoryRepository;
     this.mContentRepository         = contentRepository;
     this.mTumbnailBuilder           = thumbnailBuilder;
     this.mAppAppMetaInfoRepository  = appAppMetaInfoRepository;
     this.mLabelRepository           = labelRepository;
     this.mMessagingManager          = messagingManager;
     this.mEventLogRepository        = eventLogRepository;
 }
Esempio n. 4
0
 public abstract void Init(IDiContainer container,
                        IViewModelManager vmManager,
                        IMessagingManager messagingManager,
                        IPresenter presenter,
                        ILogger logger);
Esempio n. 5
0
 public StartPageController(IMessagingManager messagingManager, INotificationManager notificationManager)
 {
     this._notificationManager = notificationManager;
     this._messagingManager    = messagingManager;
 }
 public MessagingSubscriptionTask(IMessagingManager messagingManager)
 {
     mMessagingManager = messagingManager;
 }
Esempio n. 7
0
 public Manager(IUploaderManager uploader, IMessagingManager publish)
 {
     _uploader = uploader;
     _publish  = publish;
 }