Esempio n. 1
0
 public GetSettings(IUiThread uiThread, IDataThread workerThread,
                    ISettingsRepository settingsRepository) : base(uiThread, workerThread)
 {
     this.settingsRepository = settingsRepository;
 }
 protected ObservableUseCase(IUiThread uiThread, IDataThread workerThread)
     : base(uiThread, workerThread)
 {
 }
Esempio n. 3
0
 public GetCountries(IUiThread uiThread, IDataThread workerThread,
                     ICountryRepository countryRepository) : base(uiThread, workerThread)
 {
     this.countryRepository = countryRepository;
 }
 public SetCountryCacheLifeTime(IUiThread uiThread, IDataThread workerThread,
                                ISettingsRepository settingsRepository) : base(uiThread, workerThread)
 {
     this.settingsRepository = settingsRepository;
 }