You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
509 B
25 lines
509 B
using Data;
|
|
using LinqToPgSQL;
|
|
using Model;
|
|
|
|
namespace IHM
|
|
{
|
|
public partial class App : Application
|
|
{
|
|
public Manager Manager { get; set; } = new Manager(new Stub());
|
|
public App()
|
|
{
|
|
InitializeComponent();
|
|
|
|
if(OperatingSystem.IsWindows() || OperatingSystem.IsMacOS())
|
|
{
|
|
MainPage = new AppShellDesktop();
|
|
}
|
|
else
|
|
{
|
|
MainPage = new AppShell();
|
|
}
|
|
}
|
|
|
|
}
|
|
} |