Ejemplo n.º 1
0
 public NoiseDetectedInteractor(IMirrorStateServices mirrorStateServices, IUserEnrollmentUseCase userEnrollmentUseCase, IAuthenticateUserUseCase authenticateUserUseCase, INoiseActionPresenter noiseActionPresenter)
 {
     _mirrorStateServices     = mirrorStateServices;
     _userEnrollmentUseCase   = userEnrollmentUseCase;
     _authenticateUserUseCase = authenticateUserUseCase;
     _noiseActionPresenter    = noiseActionPresenter;
 }
 public DefaultUserUseCaseInteractor(
     IWeatherService weatherService,
     INewsService newsService,
     IDeliveryBoundary deliveryBoundary,
     IMirrorStateServices mirrorStateServices,
     IDefaultUserPresenter defaultUserPresenter)
 {
     _weatherService       = weatherService;
     _newsService          = newsService;
     _deliveryBoundary     = deliveryBoundary;
     _mirrorStateServices  = mirrorStateServices;
     _defaultUserPresenter = defaultUserPresenter;
 }
Ejemplo n.º 3
0
 public TriggerEnrollmentInteractor(IVoiceUseCasesStateService voiceUseCasesStateService, IMirrorStateServices mirrorStateServices, IDeliveryBoundary deliveryBoundary)
 {
     this._voiceUseCasesStateService = voiceUseCasesStateService;
     this._mirrorStateServices       = mirrorStateServices;
     this._deliveryBoundary          = deliveryBoundary;
 }