コード例 #1
0
 public InputLogin(IInputHandler inputHandler, ITemporaryCacheAccount temporaryCacheAccount
                   , IInputCache inputCache, ISettingsManager <ApplicationSettings> settingsManager
                   , IWindowsManager windowsManager, IDeviceManager deviceManager
                   , IEventPublisher eventPublisher)
     : base(inputHandler, temporaryCacheAccount, inputCache, settingsManager, windowsManager, deviceManager)
 {
     _eventPublisher = eventPublisher;
 }
コード例 #2
0
 protected InputBase(IInputHandler inputHandler, ITemporaryCacheAccount temporaryCacheAccount
                     , IInputCache inputCache, ISettingsManager <ApplicationSettings> settingsManager
                     , IWindowsManager windowsManager, IDeviceManager deviceManager)
 {
     this.inputHandler          = inputHandler;
     this.temporaryCacheAccount = temporaryCacheAccount;
     this.inputCache            = inputCache;
     this.settingsManager       = settingsManager;
     this.windowsManager        = windowsManager;
     this.deviceManager         = deviceManager;
 }