예제 #1
0
 public UpgradesViewModel(IFeaturesService featuresService)
 {
     LoadCommand = ReactiveCommand.CreateAsyncTask(async _ =>
     {
         Keys = (await featuresService.GetAvailableFeatureIds()).ToArray();
     });
 }
예제 #2
0
 public UpgradesViewModel(IFeaturesService featuresService)
 {
     LoadCommand = ReactiveCommand.CreateAsyncTask(async _ =>
     {
         Keys = (await featuresService.GetAvailableFeatureIds()).ToArray();
     });
 }
예제 #3
0
 protected override async Task Load(bool forceCacheInvalidation)
 {
     Keys = (await _featuresService.GetAvailableFeatureIds()).ToArray();
 }