We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c929ce commit 724aa02Copy full SHA for 724aa02
sample/ToDoSampleApp/App.xaml.cs
@@ -4,16 +4,16 @@ namespace ToDoSampleApp;
4
5
public partial class App : Application
6
{
7
- readonly IDatabaseService databaseService;
8
- public App(IDatabaseService databaseService)
9
- {
10
- InitializeComponent();
11
- this.databaseService = databaseService;
12
- }
+ readonly IDatabaseService databaseService;
+ public App(IDatabaseService databaseService)
+ {
+ InitializeComponent();
+ this.databaseService = databaseService;
+ }
13
protected override Window CreateWindow(IActivationState? activationState) => new(new AppShell());
14
15
protected override async void OnStart()
16
17
- await databaseService.Init();
18
+ await databaseService.Init();
19
}
0 commit comments