2025-01-28 13:50:12 +01:00
|
|
|
|
using Microsoft.Maui;
|
|
|
|
|
using Microsoft.Maui.Controls;
|
|
|
|
|
using MauiApp1.Data;
|
2025-01-16 17:48:14 +01:00
|
|
|
|
|
2025-01-28 13:50:12 +01:00
|
|
|
|
namespace MauiApp1
|
2025-01-16 17:48:14 +01:00
|
|
|
|
{
|
2025-01-28 13:50:12 +01:00
|
|
|
|
public partial class App : Application
|
2025-01-16 17:48:14 +01:00
|
|
|
|
{
|
2025-01-28 13:50:12 +01:00
|
|
|
|
private readonly Database _database;
|
2025-01-16 17:48:14 +01:00
|
|
|
|
|
2025-01-28 13:50:12 +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
|
|
|
|
}
|
|
|
|
|
}
|