File tree Expand file tree Collapse file tree 5 files changed +10
-5
lines changed
samples/MvvmSample.Core/ViewModels Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ namespace MvvmSample.Core.ViewModels;
10
10
11
11
public class AsyncRelayCommandPageViewModel : SamplePageViewModel
12
12
{
13
- public AsyncRelayCommandPageViewModel ( IFilesService filesService ) : base ( filesService )
13
+ public AsyncRelayCommandPageViewModel ( IFilesService filesService )
14
+ : base ( filesService )
14
15
{
15
16
DownloadTextCommand = new AsyncRelayCommand ( DownloadTextAsync ) ;
16
17
}
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ namespace MvvmSample.Core.ViewModels;
8
8
9
9
public class IocPageViewModel : SamplePageViewModel
10
10
{
11
- public IocPageViewModel ( IFilesService filesService ) : base ( filesService )
11
+ public IocPageViewModel ( IFilesService filesService )
12
+ : base ( filesService )
12
13
{
13
14
}
14
15
}
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ namespace MvvmSample.Core.ViewModels;
13
13
14
14
public class MessengerPageViewModel : SamplePageViewModel
15
15
{
16
- public MessengerPageViewModel ( IFilesService filesService ) : base ( filesService )
16
+ public MessengerPageViewModel ( IFilesService filesService )
17
+ : base ( filesService )
17
18
{
18
19
RequestCurrentUsernameCommand = new RelayCommand ( RequestCurrentUsername ) ;
19
20
ResetCurrentUsernameCommand = new RelayCommand ( ResetCurrentUsername ) ;
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ namespace MvvmSample.Core.ViewModels;
11
11
12
12
public class ObservableObjectPageViewModel : SamplePageViewModel
13
13
{
14
- public ObservableObjectPageViewModel ( IFilesService filesService ) : base ( filesService )
14
+ public ObservableObjectPageViewModel ( IFilesService filesService )
15
+ : base ( filesService )
15
16
{
16
17
ReloadTaskCommand = new RelayCommand ( ReloadTask ) ;
17
18
}
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ namespace MvvmSample.Core.ViewModels;
10
10
11
11
public class RelayCommandPageViewModel : SamplePageViewModel
12
12
{
13
- public RelayCommandPageViewModel ( IFilesService filesService ) : base ( filesService )
13
+ public RelayCommandPageViewModel ( IFilesService filesService )
14
+ : base ( filesService )
14
15
{
15
16
IncrementCounterCommand = new RelayCommand ( IncrementCounter ) ;
16
17
}
You can’t perform that action at this time.
0 commit comments