File tree Expand file tree Collapse file tree
samples/MvvmSample.Core/ViewModels Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ namespace MvvmSample.Core.ViewModels;
1010
1111public class AsyncRelayCommandPageViewModel : SamplePageViewModel
1212{
13- public AsyncRelayCommandPageViewModel ( IFilesService filesService ) : base ( filesService )
13+ public AsyncRelayCommandPageViewModel ( IFilesService filesService )
14+ : base ( filesService )
1415 {
1516 DownloadTextCommand = new AsyncRelayCommand ( DownloadTextAsync ) ;
1617 }
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ namespace MvvmSample.Core.ViewModels;
88
99public class IocPageViewModel : SamplePageViewModel
1010{
11- public IocPageViewModel ( IFilesService filesService ) : base ( filesService )
11+ public IocPageViewModel ( IFilesService filesService )
12+ : base ( filesService )
1213 {
1314 }
1415}
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ namespace MvvmSample.Core.ViewModels;
1313
1414public class MessengerPageViewModel : SamplePageViewModel
1515{
16- public MessengerPageViewModel ( IFilesService filesService ) : base ( filesService )
16+ public MessengerPageViewModel ( IFilesService filesService )
17+ : base ( filesService )
1718 {
1819 RequestCurrentUsernameCommand = new RelayCommand ( RequestCurrentUsername ) ;
1920 ResetCurrentUsernameCommand = new RelayCommand ( ResetCurrentUsername ) ;
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ namespace MvvmSample.Core.ViewModels;
1111
1212public class ObservableObjectPageViewModel : SamplePageViewModel
1313{
14- public ObservableObjectPageViewModel ( IFilesService filesService ) : base ( filesService )
14+ public ObservableObjectPageViewModel ( IFilesService filesService )
15+ : base ( filesService )
1516 {
1617 ReloadTaskCommand = new RelayCommand ( ReloadTask ) ;
1718 }
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ namespace MvvmSample.Core.ViewModels;
1010
1111public class RelayCommandPageViewModel : SamplePageViewModel
1212{
13- public RelayCommandPageViewModel ( IFilesService filesService ) : base ( filesService )
13+ public RelayCommandPageViewModel ( IFilesService filesService )
14+ : base ( filesService )
1415 {
1516 IncrementCounterCommand = new RelayCommand ( IncrementCounter ) ;
1617 }
You can’t perform that action at this time.
0 commit comments