示例#1
0
 public GettingStartedViewModel()
 {
     _blackcoinAddress = string.Empty;
     _commonService    = Mvx.Resolve <ICommonService>();
     _dialogService    = Mvx.Resolve <IUserDialogService>();
     _settingsService  = Mvx.Resolve <ISavedSettingsService>();
 }
 public StatisticsViewModel(IBlackCoinMultipoolService repository, ICommonService common, ISavedSettingsService settings)
 {
     _repository    = repository;
     _common        = common;
     _savedSettings = settings;
     RefreshCommand.Execute();
 }
 public SettingsViewModel()
 {
     _service         = Mvx.Resolve <ISavedSettingsService>();
     BlackCoinAddress = _service.BlackCoinAddress;
 }
 public BlackCoinMultipoolAppStart(ISavedSettingsService service)
 {
     _service = service;
 }