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.
|
|
|
|
using LinqToPgSQL;
|
|
|
|
|
using Model;
|
|
|
|
|
|
|
|
|
|
namespace IHM
|
|
|
|
|
{
|
|
|
|
|
public partial class App : Application
|
|
|
|
|
{
|
|
|
|
|
public Manager Manager { get; set; } = new Manager(new PersLinqToPgSQL());
|
|
|
|
|
public App()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
|
|
MainPage = new AppShell();
|
|
|
|
|
|
|
|
|
|
if(OperatingSystem.IsWindows())
|
|
|
|
|
{
|
|
|
|
|
MainPage = new UI_Windows.MainPage_Windows();
|
|
|
|
|
}
|
|
|
|
|
else if(OperatingSystem.IsAndroid() || OperatingSystem.IsIOS())
|
|
|
|
|
{
|
|
|
|
|
MainPage = new MainPage();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|