Skip to content

Commit 5736ddd

Browse files
committed
base to new line
1 parent 5523f81 commit 5736ddd

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

samples/MvvmSample.Core/ViewModels/AsyncRelayCommandPageViewModel.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ namespace MvvmSample.Core.ViewModels;
1010

1111
public 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
}

samples/MvvmSample.Core/ViewModels/IocPageViewModel.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ namespace MvvmSample.Core.ViewModels;
88

99
public class IocPageViewModel : SamplePageViewModel
1010
{
11-
public IocPageViewModel(IFilesService filesService) : base(filesService)
11+
public IocPageViewModel(IFilesService filesService)
12+
: base(filesService)
1213
{
1314
}
1415
}

samples/MvvmSample.Core/ViewModels/MessengerPageViewModel.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ namespace MvvmSample.Core.ViewModels;
1313

1414
public 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);

samples/MvvmSample.Core/ViewModels/ObservableObjectPageViewModel.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ namespace MvvmSample.Core.ViewModels;
1111

1212
public 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
}

samples/MvvmSample.Core/ViewModels/RelayCommandPageViewModel.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ namespace MvvmSample.Core.ViewModels;
1010

1111
public 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
}

0 commit comments

Comments
 (0)