AppSAV/MauiApp1/App.xaml.cs

20 lines
472 B
C#
Raw Permalink Normal View History

using Microsoft.Maui;
using Microsoft.Maui.Controls;
using MauiApp1.Data;
2025-01-16 17:48:14 +01:00
namespace MauiApp1
2025-01-16 17:48:14 +01:00
{
public partial class App : Application
2025-01-16 17:48:14 +01:00
{
private readonly Database _database;
2025-01-16 17:48:14 +01:00
public App(Database database)
{
InitializeComponent();
_database = database;
MainPage = new AppShell();
}
public static Database Database => Current.Handler.MauiContext.Services.GetService<Database>();
2025-01-16 17:48:14 +01:00
}
}